/* Hero Styles */
.hero-section {
    background-color: var(--color-banner-bg);
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background-image: none;
}

/* Remove old dot pattern overlay */
.hero-section::after {
    display: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.25rem;
    /* Adjusted for boxed width */
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #1D1D1D;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 32px;
    max-width: 800px;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    /* Tighter gap */
    justify-content: left;
}

/* Sub-Nav Tabs (below hero) */
.sub-nav-tabs {
    border-bottom: 1px solid #EAEAEA;
    background-color: white;
    position: sticky;
    top: 72px;
    /* Below header */
    z-index: 999;
}

.sub-nav-tabs nav {
    display: flex;
    gap: 32px;
}

.sub-nav-tabs a {
    display: inline-block;
    padding: 20px 0;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    /* Overlap border */
}

.sub-nav-tabs a:hover {
    color: var(--color-primary);
}

.sub-nav-tabs a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .sub-nav-tabs nav {
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 0;
    }
}