* {
    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: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-menu .active a {
    color:#4CAF50;
}
.nav-menu a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4CAF50;
}
/* Footer */
footer {
    background: #289965;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-logo {
    width: 325px;
    height: 60px;
    background: url("./img/foot-logo.png");
    background-size: 100% 100%;
}


.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
