/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Header */
header {
    background: #1a3b5d;
    color: white;
    padding: 1rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* Menu */
.main-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
}

.main-menu a.active, .main-menu a:hover {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
}

/* Main */
main {
    padding: 40px 0;
    min-height: 70vh;
}

/* Footer */
footer {
    background: #1a3b5d;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    .main-menu ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-menu li {
        margin: 5px 10px;
    }
}