/* Custom CSS for the website */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.2));
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd, #0056b3);
}

/* Order Summary */
.order-summary {
    position: sticky;
    top: 20px;
}

/* Payment Method Cards */
.payment-method-card {
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
footer a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .btn {
        margin-bottom: 10px;
    }
}