.hero {
    min-height: 90vh;
}
.hero-content {
    max-width: 900px;
}
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.hero-text {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.btn-primary {
    background: #f8c822;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.feature {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    padding: 2rem 1.5rem;
}
.feature-icon {
    font-size: 3rem;
    color: #f8c822;
    margin-bottom: 1rem;
}
.testimonials {
    background: #f5f5f5;
}
.testimonial {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.testimonial-author {
    font-weight: 600;
    color: #555;
}
.cta-section-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button-large {
    padding: 1rem 3rem;
    font-size: 1.3rem;
}

.text-center {
    text-align: center;
}