.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.hero-inner {
    text-align: center;
    margin: 0 auto;
}

.hero-section.hero-content-width {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.hero-heading {
    font-family: var(--font-family-heading);
    font-size: 72px;
    font-weight: var(--font-weight-medium);
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 40px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section.heading-small .hero-heading {
    font-size: 56px;
    font-weight: 600;
}

.hero-subheading {
    font-family: var(--font-family-text);
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 32px 0;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 25px;
    font-family: var(--font-family-text);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 0;
    height: 74px;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.hero-button-primary {
    background: #A1AB81;
    color: var(--color-white);
}

.hero-button-primary:hover {
    background: var(--color-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.hero-button-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-button-secondary:hover {
    background: #ffffff;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-button {
        width: 100%;
        max-width: 177px;
        padding: 11px !important;
        height: auto;
        font-size: 16px;
        margin: auto;
    }

    .hero-section.heading-small .hero-heading {
        font-size: 32px;
    }

    .hero-subheading {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-heading {
        font-size: 40px;
    }

    .hero-section.heading-small .hero-heading {
        font-size: 42px;
    }
}