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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top {
    background: #5AAD76;
    padding: 20px 0;
}

.logo {
    width: 416px;
    height: 56px;
    background: url("./img/logo.png") no-repeat;
    background-size: 100% 100%;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.nav-item.active {
    background: #F9D544;
}

.footer {
    background: #001409;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.footer-section {
    width: 300px;
    flex: 0 0 auto;
}

.footer-section h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #fff;
}

.copyright {
    font-size: 14px;
    color: #fff;
}