/* 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-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #1d1d1f;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 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: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 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;
}

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

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

.btn-link span {
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.section-header p {
    font-size: 1.25rem;
    color: #86868b;
}

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

.feature {
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

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

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

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

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

/* Showcase Section */
.showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem;
    background-color: #f5f5f7;
}

.showcase-content {
    max-width: 600px;
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
}

.showcase-content p {
    font-size: 1.25rem;
    color: #86868b;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.showcase-image {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

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

/* Responsive Design */
@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem;
    }
    
    .hero-content {
        padding-bottom: 4rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.25rem;
    }
    
    .showcase {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .showcase-content {
        text-align: left;
        margin-right: 4rem;
        margin-bottom: 0;
    }
    
    .showcase:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .showcase:nth-child(even) .showcase-content {
        margin-right: 0;
        margin-left: 4rem;
    }
}