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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header Styles */
.header {
    background:#fff;
}
.logo-wrapper{
    position: absolute;
    top:0;
    left:0;
    background:url("../img/logo-wrapper.png") no-repeat;
    background-size:100% 100%;
    padding:15px 0;
    height:101px;
    width: 750px;
    max-width: 800px;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:15px 0;
}

.logo {
    width: 286px;
    height: 72px;
    background:url("../img/logo.png") no-repeat;
    background-size:100% 100%;
    position: relative;
    z-index: 10;
}

.logo-icon {
    width: 45px;
    height: 35px;
    background-color: #2c3e50;
    position: relative;
    transform: skew(-15deg);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skew(15deg);
    width: 25px;
    height: 3px;
    background-color: #f4c842;
}

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

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

.nav-menu a {
    text-decoration: none;
    font-size: 14px;
    color: #2c3e50;
    padding: 8px 0;
    position: relative;
}

.nav-menu a.active {
    color: #2c3e50;
    font-weight: bold;
}

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

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

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

.footer-logo-icon {
    width: 45px;
    height: 35px;
    background-color: #f4c842;
    position: relative;
    transform: skew(-15deg);
}

.footer-logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skew(15deg);
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
}

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

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

.footer-section h4 {
    font-size: 16px;
    color: #f4c842;
    margin-bottom: 15px;
    font-weight: bold;
}

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

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

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

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

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

.footer-contact-info .label {
    color: #f4c842;
    font-weight: bold;
}

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

.footer-copyright {
    font-size: 12px;
    color: #7f8c8d;
}