/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 80vh;
}

.hero-image img {
    max-height: 500px;
    object-fit: cover;
}

/* Features Section */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

/* Pricing Section */
.price-tag .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-tag .price {
    font-size: 3rem;
    font-weight: bold;
}

.price-tag .period {
    font-size: 1rem;
    color: #6c757d;
}

/* Testimonials Section */
.testimonial-rating {
    color: #ffc107;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Footer */
footer a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.social-icons a {
    font-size: 1.5rem;
}

/* Custom Utilities */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.min-vh-100 {
    min-height: 100vh;
}