/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subhead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin-top: 2rem;
}

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

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

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

.section-header p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 4rem;
}

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

.feature-item {
    padding: 2rem;
}

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

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

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

/* Showcase Section */
.showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.showcase-image {
    width: 100%;
    max-width: 800px;
}

.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;
    background-color: #f5f5f7;
    border-radius: 18px;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

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

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

/* Buttons */
.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: #000;
    color: #fff;
}

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-content {
        margin-bottom: 0;
        margin-right: 3rem;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .showcase {
        flex-direction: row;
        text-align: left;
    }

    .showcase-content {
        margin-right: 3rem;
        margin-bottom: 0;
        text-align: left;
    }

    .showcase:nth-child(even) {
        flex-direction: row-reverse;
    }

    .showcase:nth-child(even) .showcase-content {
        margin-right: 0;
        margin-left: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-header h2,
    .showcase h2,
    .cta h2 {
        font-size: 3rem;
    }
}