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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

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

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

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

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

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

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

.btn-primary {
    background-color: #0071e3;
    color: white;
}

.btn-primary:hover {
    background-color: #0077ed;
    transform: translateY(-2px);
}

.btn-link {
    color: #0071e3;
}

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

.arrow {
    font-size: 1.2rem;
    margin-left: 0.3rem;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.feature {
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #0071e3;
}

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

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

.feature p {
    color: #86868b;
    line-height: 1.5;
}

/* Showcase Section */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #f5f5f7;
    margin-bottom: 2rem;
}

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

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

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