* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #e8dfc4;
}

.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.logo-title {
    color: #d4af37;
    font-size: 2.5em;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.subtitle {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-top: 5px;
    font-weight: 300;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #d4af37;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.mobile-menu-toggle {
    display: none;
    background: #1a1a1a;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid #333;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 5px auto;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    background: #1a1a1a;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.nav a {
    display: inline-block;
    color: #e0e0e0;
    text-decoration: none;
    padding: 15px 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-right: 1px solid #333;
}

.nav a:hover, .nav a.active {
    background-color: #d4af37;
    color: #000;
}

.nav a:last-child {
    border-right: none;
}

.nav a:focus {
    outline: 2px solid #d4af37;
    outline-offset: -2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #e8dfc4;
}

.content {
    padding: 60px 40px;
}

.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    text-align: center;
    padding: 30px;
    margin-top: 0;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s;
    text-decoration: underline;
}

.footer a:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .logo-title {
        font-size: 1.8em;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        flex-direction: column;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        display: block;
        padding: 15px 20px;
        font-size: 1em;
        border-right: none;
        border-bottom: 1px solid #333;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .content {
        padding: 30px 20px;
    }
}
