    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 90px;   
background:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
        url('/Images/lift.jpg') center / auto 100vh no-repeat fixed;
      max-width: 2000px;
    margin: 0 auto;
}


.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: 0px 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;
}










/* ------------------ твой блок два ------------------ */
.block-two {
    background: rgba(5, 5, 5, 0.5);
    padding: 25px 20px 35px;
    color: white;
    text-align: center;
    backdrop-filter: blur(3px);          /* 2–4px обычно хватает */
}

.block-two h1 {
    margin: 0 0 0.5em;
    color: #4cc9f0 ;
    font-size: clamp(1.3rem, 5.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.15;
    padding-bottom: 0.05em;
    padding-top: 0.05em;
}
/* Заголовок */
.block-two h2 {
    margin: 0 0 0.5em;
    font-size: clamp(1.2rem, 5.5vw, 1.4rem);
    font-weight: 700;
    line-height: 1.15;
    padding-bottom: 0.05em;
    padding-top: 0.05em;
}

/* Параграфы */
.block-two p {
    font-size: 1rem;
    line-height: 1.4;
  text-align: center;
    max-width: 750px;
    color: #f0f0f0;
    padding-bottom: 0.1em;
    padding-top: 0.05em;
    margin-left: auto;
    margin-right: auto;
}

/* Жирный текст — акцент */
.block-two b {
    color: #4cc9f0;
    font-weight: 600;
}






















        /* FAQ (block 3) */
        .block-three {
            background: rgba(248, 249, 250, 0.5);
            padding: 15px 15px;
            text-align: center;
        }
        .block-three h2 {
    font-size: clamp(1.5rem, 5vw, 1.5em);   /* адаптивно: от 1.8 до 2.5 rem */
    font-weight: 700;
    color: black;
    margin: 0 0 1em 0;                      /* снизу хороший воздух */
    line-height: 1.4;
    letter-spacing: -0.02em;
}
        .list-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .styled-list {
            list-style: none;
            margin: 1rem auto 0;
            padding: 0;
            max-width: 720px;
        }
        .styled-list li {
            background: rgba(0, 0, 0, 0.7);
            margin: 0 0 10px;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: left;
            font-size: 1rem;
        }
        .styled-list li a.special-link {
            display: block;
        }
        
  a.special-link {
            color: white;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        a.special-link:hover,
        a.special-link:focus {
            color: #4cc9f0;
            text-decoration: underline;
            text-decoration-color: #4cc9f0;
            background: rgba(76, 201, 240, 0.08);
        }
        .text-content a.special-link {
            color: white;
        }
        .text-content a.special-link:hover,
        .text-content a.special-link:focus {
            color: #4cc9f0;
            text-decoration: underline;
            text-decoration-color: #4cc9f0;
            background: rgba(255,255,255,0.12);
        }
        .read-more-link {
    color: #4cc9f0 !important;          /* красный, как "danger" в bootstrap */
}

.read-more-link:hover,
.read-more-link:focus {
    color: #4cc9f0 !important;          /* твой акцентный цвет при наведении */
    text-decoration: underline;
}














        /* Contacts + Form (block 5) */
        .block-five {
            background: rgba(5, 5, 5, 0.5);
            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: 80px;
            }
            .block-two {
                padding-top: 120px;
                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: 100px;
            }
        }
        
        @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;
    }
}