* {
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: #fff;
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 {
width: 305px;
height: 50px;
background:url("./img/logo.png") no-repeat;
background-size:100% 100%;
}

.logo-symbol {
font-size: 24px;
color: #e74c3c;
font-weight: bold;
}

.logo-text {
font-size: 16px;
color: #333;
font-weight: 500;
}

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

.nav-menu a {
text-decoration: none;
font-size: 14px;
color: #666;
font-weight: 400;
margin-right: 50px;
}

.nav-menu a.active {
color: #e74c3c;
border-bottom: 2px solid #e74c3c;
padding-bottom: 2px;
}
/* Footer */
.footer {
background: #001409;
color: #fff;
padding: 40px 0;
}

.footer-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-bottom: 30px;
}

.footer-section h3 {
font-size: 16px;
color: #fff;
font-weight: 600;
margin-bottom: 15px;
}

.footer-section p {
font-size: 14px;
color: #ccc;
font-weight: 400;
margin-bottom: 10px;
}

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

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

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

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

.footer-bottom p {
font-size: 12px;
color: #999;
font-weight: 400;
}
