* {
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 {
width: 1200px;
left:50%;
transform: translateX(-50%);
position: absolute;
background-color: transparent;
top:20px;
}

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

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

.download{
    display: block;
    width: 120px;
    height: 55px;
    line-height: 55px;
    color:#fff;
    font-size: 18px;
    background:#333;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
}
.nav-menu {
display: flex;
justify-content: start;
list-style: none;
gap: 30px;
}

.nav-menu .active{
border-bottom:2px solid #333;
}

.nav-menu li{
    margin-right: 30px;
}

.nav-menu a {
text-decoration: none;
font-size: 16px;
color: #2c3e50;
font-weight: 500;
}
/* Footer */
.footer {
    background-color: #333;
    padding: 50px 0 30px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    background:url("./img/foot-logo.png") no-repeat;
    background-size:100% 100%;
    width: 182px;
    height: 60px;
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background-color: #f4d03f;
    margin-right: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
}

.footer-nav a {
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

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

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

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #888888;
    border-top: 1px solid #444444;
    padding-top: 20px;
}
