@import url(/css/header.css);
@import url(/css/hero.css);
@import url(/css/section.css);
@import url(/css/btn.css);
@import url(/css/about.css);
@import url(/css/partner.css);
@import url(/css/contact.css);
@import url(/css/footer.css);

html {
    font-size: 10px;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    background: #e8ecef;
    color: #333;
    line-height: 1.3;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h2 {
    margin-left: 10px;
    margin-bottom: 10px;

    font-size: 28px;
    color: #000;
}

p {
    margin: 0 10px;
}

ul {
    padding-left: 10px;
    list-style-type: none;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 640px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    section {
        font-size: 14px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .footer-text {
        font-size: 14px;
    }
}