:root {
    /* Frosted white glass effect */
    --panel-bg: rgba(255, 255, 255, 0.85); 
    --panel-border-radius: 20px;
    
    /* CHANGED: Match Logo Blue */
    --hero-accent-color: #114c9c; 
    
    --text-dark: #333;
    --curve-size: 30px; 
}

/* --- HERO WRAPPER & BACKGROUND --- */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/smiling-colleagues-office-talking.jpg') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Slightly darker for better text contrast */
    z-index: 1;
}

.hero-layout-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 30px;
    padding: 0 15px; 
}

/* --- HERO TEXT CONTENT --- */
.hero-text-content {
    margin-bottom: 15px;
    max-width: 700px;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: #ffffff; /* Removed accent color from text for cleaner look */
    text-decoration: underline;
    text-decoration-color: var(--hero-accent-color);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 15px;
    max-width: 550px;
    line-height: 1.4;
}

/* --- HERO BUTTONS --- */
.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 6px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

/* Primary Button */
.btn-hero-primary {
    background-color: var(--hero-accent-color);
    color: #ffffff;
    border: 1px solid var(--hero-accent-color);
}

.btn-hero-primary:hover {
    background-color: #1a323d; /* Darker shade of teal */
    border-color: #1a323d;
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-hero-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-text-content {
        padding: 0 10px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.85rem;
    }
    .hero-actions {
        justify-content: center;
    }
}