
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5px;
        }

        /* Header / Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 5px 0;
        }

       
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

        .nav-left, .nav-right {
            display: flex;
            gap: 25px;
        }

        .logo img {
            height: 90px;
            width: auto;
            max-height: 90px;
            display: block;
        }

        .nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: #007bff;
        }

        /* Hero (block 2) — самый важный блок */
        
        
      .block-two {
    padding-top: 130px;           /* оставляем отступ сверху для фиксированной шапки */
    padding-bottom: 20px;         /* нижний отступ */
    min-height: auto;             /* убираем 100vh */
    height: auto;                 /* на всякий случай */
    background: #6b7280;
    background-attachment: fixed;
    display: flex;
    align-items: center;          /* можно оставить, если хочется центрировать по вертикали */
    justify-content: center;      /* ← добавьте, если хотите центрировать по горизонтали */
    position: relative;
}


        .text-content {
            color: white;
            text-align: left;
            background: rgba(0, 0, 0, 0.55);
            padding: 20px 20px 0px 30px;
            border-radius: 12px;
            backdrop-filter: blur(4px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.5);

            /* Адаптивная ширина */
            width: 100%;
            max-width: 850px;
            margin: 0 auto;
            min-width: 0;           /* убираем принудительный min-width */
        }

        .text-content h1 {
            color: #4cc9f0;
            margin-bottom: 1.2em;
            font-size: clamp(1.4rem, 5.5vw, 1.6rem);
            text-align: center;
        }
  .text-content h2 {
            color: white;
            margin-bottom: 0.5em;
            font-size: clamp(1.2rem, 5.5vw, 1.4rem);
            padding: 20px 20px 0px 30px;
            text-align: left;
        }

        .text-content p {
            padding: 0px 20px 0px 30px;
            font-size: 1rem;
            margin-bottom: 1em;
            color: #f0f0f0;
        }
.text-content ul {
    padding: 0px 20px 0px 20px;
            font-size: 1rem;
            color: #f0f0f0;
            margin-bottom: 0.5em;
            padding-left: 1.5em;
        }
        .text-content ul li {
            margin-bottom: 0.3em;
            padding: 0px 20px 0px 30px;
        }
        .text-content hr {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.3);
            margin: 1.5em 0;
        }
        /* Таблица — адаптирована под стиль сайта */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5em 0;
            font-size: 1.05rem;
            color: #f0f0f0;
        }
        .pricing-table th,
        .pricing-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }
        .pricing-table th {
            background: rgba(0,0,0,0.4);
            color: #4cc9f0;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .pricing-table td:last-child {
            text-align: right;
            font-weight: bold;
            color: #4cc9f0;
            font-size: 1.15rem;
        }
        .pricing-table tr:hover {
            background: rgba(255,255,255,0.08);
        }
        .small-note {
            padding: 0px 0px 20px 20px;
            font-size: 0.8rem;
            color: #ddd;
            text-align: center;
            margin-top: 1.5em;
            font-style: italic;
        }
       
        /* Специальный стиль для ссылки */
        .text-content a.special-link {
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.4);
            transition: all 0.2s ease;
        }

        .text-content a.special-link:hover,
        .text-content a.special-link:focus {
            color: #4cc9f0;
            border-bottom-color: #4cc9f0;
            background: rgba(255,255,255,0.08);
        }

        /* block 3 — только ссылка "Return to FAQ" */
        .block-three {
            background: #f8f9fa;
            padding: 80px 20px;
            text-align: center;
        }

        .block-three a {
            color: #007bff;
            font-size: 1.2rem;
            text-decoration: none;
            font-weight: 500;
        }

        .block-three a:hover {
            text-decoration: underline;
        }










        /* Contacts + Form (block 5) */
        .block-five {
            background: rgba(5, 5, 5, 0.9);
            padding: 30px 20px;
            color: white;
        }
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 750px;
            margin: 0 auto;
            align-items: start;
        }
        .contacts {
            text-align: left;
        }
        .contact-info p {
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .form-group {
            margin-bottom: 10px;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 5px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 12px;
        }
        .form-group textarea {
            height: 50px;
            resize: vertical;
        }
        .btn-submit {
            background: #4cc9f0;
            color: black;
            border: none;
            padding: 10px 36px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background: #3ba4c4;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /* Responsive */
        @media (max-width: 900px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .contacts {
                text-align: left;
            }
            .contact-info {
                margin: 0 auto;
                max-width: 380px;
            }
        }
        @media (max-width: 768px) {
            .header {
                padding: 5px 0;
            }
            .nav {
                flex-direction: column;
                gap: 18px;
                padding: 5px 0;
            }
            .nav-left, .nav-right {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
                gap: 20px;
            }
            .logo img {
                height: 70px;
            }
            .block-two {
                padding-top: 210px;
                background-attachment: scroll;
            }
            .text-content {
                padding: 10px 10px;
            }
        }
        @media (max-width: 480px) {
            .text-content h2 {
                font-size: 1.8rem;
            }
            .tile {
                padding: 10px 10px;
                min-height: 90px;
            }
        }
        
        @media (max-width: 580px) {
    .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 1rem;
    }
}
        
        
        
        
        
        
        .social-links {
            display: flex;
            justify-content: left;
            gap: 30px;
            margin: 30px 0;
            padding: 0 20px;
        }
        .social-links a {
            display: block;
            transition: all 0.25s ease;
        }
        .social-links img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: contain;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            background: white;
            padding: 4px;
        }
        .social-links a:hover img {
            transform: scale(1.15);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }
   
   
   
   
   
   
   
   
   
   
   
   /* ── Узкий нижний блок (subfooter / copyright footer) ── */
.subfooter {
    background: 
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
        #0d0d0d;   /* почти чёрный, близко к блоку 2 */
    color: #ddd;
    font-size: 0.82rem;
    text-align: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.subfooter p {
    margin: 0;
    line-height: 1.5;
}

.subfooter a {
    color: #4cc9f0;          /* как акцентный цвет у тебя в других местах */
    text-decoration: none;
    transition: color 0.25s ease;
}

.subfooter a:hover,
.subfooter a:focus {
    color: #80e0ff;
    text-decoration: underline;
}

.credit-link {
    font-weight: 500;
}

.separator {
    margin: 0 8px;
    color: rgba(255,255,255,0.3);
    user-select: none;
}

/* Очень маленький экран — уменьшаем ещё чуть-чуть */
@media (max-width: 480px) {
    .subfooter {
        font-size: 0.78rem;
        padding: 12px 0;
    }
    .separator {
        margin: 0 6px;
    }
}