/* Hero Section Specialized Styles */
.hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 51, 102, 0.8), 
        rgba(77, 124, 158, 0.8)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 15px;
    color: var(--white);
}

.hero-logo {
    max-height: 180px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background-color: var(--gold);
    margin: 20px auto;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}