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

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-Regular.eot');
    src: url('./fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
         url('./fonts/Gilroy-Regular.woff') format('woff'),
         url('./fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-SemiBold.eot');
    src: url('./fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('./fonts/Gilroy-SemiBold.woff') format('woff'),
         url('./fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-Bold.eot');
    src: url('./fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
         url('./fonts/Gilroy-Bold.woff') format('woff'),
         url('./fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Gilroy', sans-serif;
    background: url('./images/background_image.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.top-bar {
    width: 100%;
    background: transparent;
    padding: 45px 0;
}

.contacts {
    font-family: 'Gilroy', sans-serif;
    color: #1a2442;
    text-align: center;
    font-size: clamp(14px, 2vw, 18px);
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.5;
}

.contacts a {
    color: #1a2442;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contacts a:hover {
    border-bottom-color: #f60;
    color: #f60;
}

.logo-container {
    width: 100%;
    padding: 20px 0;
    margin: 0;
    background-color: white;
}

.logo {
    display: block;
    margin-left: 10%;
    max-width: 90%;
    width: auto;
    height: auto;
}

@media (min-width: 1200px) {
    .logo {
        margin-left: 15%;
        max-width: 505px;
    }
}

.content-wrapper {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

.info {
    font-family: 'Gilroy', sans-serif;
    color: #1a2442;
    width: 60%;
    font-size: clamp(16px, 2.5vw, 20px);
    margin-top: 50px;
    max-width: 1200px;
    padding-right: 20px;
}

.info h1 {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.info h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #f60;
    border-radius: 2px;
}

.list {
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    color: #1a2442;
    padding-left: 20px;
    margin-left: 5%;
    max-width: 800px;
    list-style-position: outside;
}

.list li {
    margin-bottom: 10px;
    line-height: 1.4;
    position: relative;
    padding-left: 5px;
}

.list li::marker {
    color: #f60;
    font-weight: bold;
}

@media (max-width: 768px) {
    .contacts {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .logo {
        margin-left: 5%;
        max-width: 80%;
    }
    
    .info {
        margin-left: 5%;
        margin-top: 5%;
    }
    
    .list {
        margin-left: 10%;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contacts {
        font-size: 12px;
        line-height: 1.6;
        text-align: left;
        padding: 0 10px;
    }
    
    .logo {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .info {
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .info h1 {
        font-size: 22px;
    }
    
    .list {
        margin-left: 5%;
        font-size: 16px;
        padding-left: 15px;
    }
}

@media (max-width: 320px) {
    .contacts {
        font-size: 11px;
    }
    
    .info h1 {
        font-size: 18px;
    }
    
    .list {
        font-size: 14px;
    }
}
