body {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: white;
    overflow-x: hidden;
    position: relative;
}
.email-link {
    color: #acd6b0;
    text-decoration: none;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
    color: #91c489;
}
html {
    scroll-padding-top: 120px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 110vw;
    height: 110vh;
    background: url('world_back.jpg') no-repeat center center fixed;
    background-size: cover;
    filter: blur(6px);
    transform: scale(1.1);
    z-index: -1;
}

/* Хедер */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: url('header_lines.png') no-repeat center center;
    background-size: cover;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    padding-top: 0px;
}

h1 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    margin: 0;
    font-size: 45px;
    padding-bottom: 5px;
    color: #acd6b0;
}

h2 {
    font-size: 35px;
    padding-top: 10px;
}

h3 {
    margin: 0;
    font-size: 24px;
}

/* Навигация */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
}

/* Общие стили для секций */
section {
    padding: 30px 50px;
    background: rgba(0, 0, 0, 0.6);
    margin: 150px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* About Us */
#about {
    position: relative;
    background: none;
    max-width: 100vw;
    text-align: left;
    padding: 200px 50px;
    border-radius: 0;
    margin: 0;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('world_back.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

#about::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.about-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Разделительная полоса */
.separator {
    width: 100%;
    height: 5px;
    background: black;
    margin: 0;
}

/* Сервисы */
.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
    font-weight: 500;
}

.service-box {
    background: white;
    color: #2a412d;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: left;
    border: 2px solid #acd6b0;
    font-weight: 500;
}

.service-details {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    font-weight: 500;
}

.service-details ul {
    padding-left: 20px;
}

/* Команды, сервисы, контакты */
#team, #services, #contacts {
    margin-top: 20px;
    padding-top: 0px;
}

/* Подвал */
footer {
    text-align: center;
    padding: 5px;
    background: rgba(0, 0, 0, 1);
}

/* Стили списка в сервисах */
.service-box ul {
    list-style: none;
    padding-left: 20px;
}

.service-box ul li {
    position: relative;
    padding-left: 20px;
}

.service-box ul li::before {
    content: "•";
    color: #2a412d;
    font-size: 30px;
    text-shadow: 0px 0px 3px #2a412d;
    position: relative;
    left: -10px;
    top: 2px;
}

/* Адаптация для мобильных устройств */
@media screen and (max-width: 768px) {
    nav ul li {
        display: inline;
        margin: 0 7px;
    }

    nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
    }

    h1 {
        font-size: 30px;
        padding-bottom: 5px;
    }

    #about {
        padding: 80px 40px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
        margin-bottom: 15px;
    }

    section {
        padding: 20px;
        margin: 10px;
    }

    header {
        padding: 10px 0;
        background-size: cover;
    }
}
