/* Hero Section */
.hero-section {
    padding: 4rem 3rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.main-title {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 3.5rem;
    color: var(--primary-green);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.7rem;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}