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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    padding: 10px 0 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    background:url("./img/logo.png") no-repeat;
    background-size: 100% 100%;
    width: 330px;
    height: 50px;
    margin:20px auto;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    
}

.nav-item {
    font-size: 18px;
    color: #666;
    text-decoration: none;
    position: relative;
    margin-right: 30px;
}

.nav-item.active {
    color: #4a7c59;
}

.nav-item.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4a7c59;
}

/* Footer */
.footer {
    background: #2c3e50;
    padding: 40px 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    background:url("./img/foot-logo.png") no-repeat;
    background-size: 100% 100%;
    width: 330px;
    height: 50px;
    margin:20px auto;
}

.footer-logo-icon {
    width: 25px;
    height: 25px;
    background: #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon::before {
    content: "Y";
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.footer-logo-text {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    font-size: 12px;
    color: #95a5a6;
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

/* Responsive Design */
