/* Header and Logo Styles */
header {
    background: var(--brand-primary, #215772);
    color: #ECF0F1;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    width: 240px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.header-text {
    flex-grow: 1;
    text-align: left;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-text {
        text-align: center;
    }
    
    .logo {
        width: 150px;
    }
}

nav {
    margin-top: 1rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
    color: var(--brand-primary, #215772);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    background-color: var(--brand-primary, #215772);
    color: white;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .logo {
        width: 100px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    nav {
        flex-direction: column;
    }
    
    nav a {
        margin: 0.25rem 0;
    }
}
