header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 10;
}

.header-container {
    width: 100%;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--navy);
}

.logo img {
    width: auto;
    height: 60px;
    border-radius: 0;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    color: var(--white);
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--red);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
}

section {
    padding: 100px 24px;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header .accent {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 0 auto;
    border-radius: 2px;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 24px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: auto;
    height: 32px;
    border-radius: 0;
    object-fit: contain;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}
