/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f5f5f7;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #86868b;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0066cc;
    color: white;
}

.btn-primary:hover {
    background-color: #004d99;
}

.btn-link {
    color: #0066cc;
}

.btn-link:hover {
    text-decoration: underline;
}

.hero-image {
    margin-top: 3rem;
}

.hero-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1d1d1f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    padding: 2rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #0066cc;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.feature-description {
    font-size: 1.1rem;
    color: #86868b;
    line-height: 1.5;
}

/* Showcase Section */
.showcase {
    padding: 6rem 2rem;
    background-color: #f5f5f7;
}

.showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content {
    padding-right: 2rem;
}

.showcase-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #86868b;
    margin: 1.5rem 0 2rem;
}

.showcase-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.cta-subheading {
    font-size: 1.2rem;
    color: #86868b;
    margin-bottom: 2.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .showcase .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}