
    /* Базовая типографика */
    body {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        line-height: 1.6;
        font-size: 18px;
        padding: 0;
  margin: 0;
    }

    h1, h2, h3 {
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: #ffffff;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    h1 {
        font-size: 52px;
        font-weight: 800;
    }

    h2 {
        font-size: 38px;
        font-weight: 700;
    }

    h3 {
        font-size: 28px;
        font-weight: 600;
    }

    /* Адаптив под мобильный */
    @media (max-width: 768px) {
        h1 { font-size: 36px; }
        h2 { font-size: 28px; }
        h3 { font-size: 22px; }
        body { font-size: 16px; }
    }