html {
    scroll-behavior: smooth; 
    scroll-padding-top: 80px; 
}

:root {
    --blue: #0062ff;
    --dark: #0a0a0a;
    --white: #ffffff;
    --grey-text: #666666;
    --bg-light: #f7f9fc;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); line-height: 1.6; color: var(--dark); overflow-x: hidden; background-color: var(--white); }
a { text-decoration: none; color: inherit; }
.text-blue { color: var(--blue); }
.w-100 { width: 100%; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.center-btn { display: table; margin: 30px auto 0 auto; }

.btn {
    display: inline-block; padding: 15px 32px; font-size: 14px; text-transform: uppercase;
    font-weight: 600; text-align: center; border: none; cursor: pointer; transition: 0.3s;
    border-radius: 8px; letter-spacing: 1px;
}
.btn:active { transform: scale(0.96); }
.btn-blue { background-color: var(--blue); color: var(--white); position: relative; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 98, 255, 0.2); }
.btn-blue::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: 0s; }
.btn-blue:hover { background-color: #004ecc; box-shadow: 0 8px 25px rgba(0, 98, 255, 0.4); }
.btn-blue:hover::after { animation: shine 0.8s ease-out forwards; }
.btn-white { background-color: var(--white); color: var(--dark); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.btn-white:hover { background-color: #f0f0f0; }

@keyframes shine { 100% { left: 200%; } }

/* --- HEADER & LOGO --- */
header {
    display: flex; justify-content: space-between; align-items: center; padding: 15px 5%;
    background-color: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); color: var(--white); 
    position: fixed; width: 100%; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05);
    transform: translateZ(0); /* Апаратне прискорення */
}

.logo-link { display: flex; align-items: center; }
.header-logo { height: 45px; width: auto; object-fit: contain; filter: brightness(0) invert(1); transition: 0.3s ease; }
.header-logo:hover { opacity: 0.8; }

/* Desktop Navigation */
nav { display: flex; gap: 35px; align-items: center; }
nav a { font-size: 13px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; transition: color 0.3s; color: #ccc; }
nav a:hover { color: var(--white); }

/* Hamburger Menu Icon */
.menu-toggle {
    display: none; flex-direction: column; justify-content: space-between;
    width: 30px; height: 21px; cursor: pointer; z-index: 101;
}
.menu-toggle span {
    display: block; width: 100%; height: 3px; background: var(--white); 
    border-radius: 3px; transition: 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Socials */
.socials { display: flex; gap: 12px; }
.mobile-socials { display: none; }
.social-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background-color: rgba(255,255,255,0.1); border-radius: 8px; color: #fff; transition: 0.3s; }
.social-btn:hover { background-color: var(--blue); transform: translateY(-2px); }

/* --- HERO & BACKGROUNDS --- */
.hero {
    height: 100vh; min-height: 700px; display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; color: var(--white); position: relative;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('file_00000000781071f4a95e488684f4baa4.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.bg-road { background: linear-gradient(rgba(10,10,15,0.85), rgba(10,10,15,0.85)), url('file_0000000043947246a9b0b1647bc01e37.png'); color: white; background-attachment: fixed; background-size: cover; background-position: center;}
.bg-bus { background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), url('file_0000000057a8720a82762803a5e29129.png'); color: white; padding: 120px 5%; background-attachment: fixed; background-size: cover; background-position: center;}
.bg-forest { background: linear-gradient(rgba(10,14,20,0.95), rgba(10,14,20,0.95)), url('file_0000000042a871fdbfbaf3809460de01.png'); color: white; background-attachment: fixed; background-size: cover; background-position: center;}

@keyframes heroFadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 { font-size: 56px; font-weight: 800; margin-bottom: 15px; letter-spacing: 1px; opacity: 0; animation: heroFadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }
.hero h2 { font-size: 22px; font-weight: 400; margin-bottom: 45px; color: #ddd; opacity: 0; animation: heroFadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 60px; opacity: 0; animation: heroFadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards; }

.stats-container { display: flex; gap: 1px; position: absolute; bottom: 0; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); width: 100%; justify-content: center; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-box { padding: 35px 40px; text-align: center; opacity: 0; animation: fadeInDown 1s ease forwards; flex: 1; max-width: 250px; }
.stat-box:nth-child(1) { animation-delay: 0.6s; }
.stat-box:nth-child(2) { animation-delay: 0.8s; }
.stat-box:nth-child(3) { animation-delay: 1.0s; }
.stat-box:nth-child(4) { animation-delay: 1.2s; }
.stat-box h3 { font-size: 42px; margin-bottom: 5px; font-weight: 700; }
.stat-box p { font-size: 13px; color: #bbb; text-transform: uppercase; letter-spacing: 1px; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* --- SECTIONS --- */
section { padding: 100px 5%; text-align: center; overflow: hidden; }
section h2 { font-size: 40px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.bg-white { background-color: var(--white); color: var(--dark); }
.bg-light { background-color: var(--bg-light); color: var(--dark); }
.bg-dark { background-color: #080808; color: var(--white); }
.bg-black { background-color: #050505; color: white; }
.subtitle { max-width: 650px; margin: 0 auto 50px auto; color: var(--grey-text); font-size: 17px; }

/* Benefits */
.benefits-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.benefit-item { max-width: 280px; padding: 30px; background: var(--white); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.4s ease; will-change: transform; }
.benefit-item:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.icon { font-size: 45px; margin-bottom: 20px; display: flex; justify-content: center; align-items: center; height: 60px;}

/* Cards Grid */
.cards-grid { display: flex; justify-content: center; gap: 35px; flex-wrap: wrap; }
.route-card, .detail-card { background: rgba(20,20,25,0.8); backdrop-filter: blur(10px); padding: 25px; border-radius: 16px; width: 320px; text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; will-change: transform; }
.route-card:hover, .detail-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); border-color: rgba(0, 98, 255, 0.5); z-index: 2; }
.flag-placeholder { height: 160px; width: 100%; object-fit: cover; margin-bottom: 20px; border-radius: 8px; }
.route-card h4 { color: var(--white); margin-bottom: 25px; font-size: 22px; }
.detail-card { padding: 0; text-align: left; background: #111; border: 1px solid #222; overflow: hidden; }
.detail-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.detail-card:hover img { transform: scale(1.05); }
.detail-card h4 { margin: 20px 20px 10px 20px; color: white; font-size: 20px; }
.detail-card p { margin: 0 20px 25px 20px; font-size: 14px; color: #999; line-height: 1.5; }

/* Comfort Section */
.comfort-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 60px; max-width: 1100px; margin: 50px auto 0; align-items: center; }
.comfort-features { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 15px; }
.feature-box { display: flex; align-items: center; background-color: #888888; padding: 18px 25px; border-radius: 10px; color: var(--white); font-weight: 600; font-size: 15px; transition: transform 0.3s ease, background-color 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-align: left; will-change: transform; }
.feature-box:hover { transform: translateX(10px); background-color: #777777; }
.feature-box svg { width: 26px; height: 26px; color: var(--blue); margin-right: 20px; flex-shrink: 0; }
.comfort-media { flex: 1.5; min-width: 320px; display: flex; flex-direction: column; align-items: center; }
.comfort-desc { font-size: 16px; color: var(--grey-text); margin-bottom: 30px; line-height: 1.6; text-align: center; max-width: 450px; }
.video-wrapper { width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.15); margin-bottom: 35px; background: #000; position: relative; transform: translateZ(0);}
.video-wrapper video { width: 100%; display: block; outline: none; }

/* Onboard Service Gallery */
.onboard-service { padding: 100px 5%; text-align: center; }
.gallery-container { max-width: 900px; margin: 0 auto 30px; position: relative; }
.main-image-wrapper { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); margin-bottom: 15px; aspect-ratio: 16/9; background: #000; transform: translateZ(0);}
.main-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s ease; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; width: 46px; height: 46px; border-radius: 50%; font-size: 18px; color: #333; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 2; display: flex; align-items: center; justify-content: center; }
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.1); color: var(--blue); }
.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }
.thumbnail-row { display: flex; gap: 10px; justify-content: center; overflow-x: auto; padding: 10px 5px; margin-top: 10px; }
.thumb { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: 0.6; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.thumb:hover { opacity: 0.9; transform: translateY(-3px); }
.thumb.active { opacity: 1; border: 2px solid var(--blue); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,98,255,0.2); }

.service-features-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; background-color: #888888; padding: 25px 30px; border-radius: 12px; max-width: 900px; margin: 40px auto 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.s-feature { flex: 1; min-width: 100px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; transition: transform 0.3s; }
.s-feature:hover { transform: translateY(-5px); }
.s-feature svg { width: 34px; height: 34px; color: var(--blue); }
.s-feature span { color: #ffffff; font-size: 13px; font-weight: 600; line-height: 1.3; }

.about-content { background: rgba(15,15,20,0.85); backdrop-filter: blur(10px); max-width: 850px; margin: 0 auto; padding: 60px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.about-content p { margin-bottom: 20px; font-size: 16px; line-height: 1.8; color: #ccc; }

/* Reviews */
.slider-container { display: flex; align-items: center; justify-content: center; gap: 30px; max-width: 700px; margin: 0 auto; }
.slider-wrapper { overflow: hidden; width: 100%; text-align: center; min-height: 160px; position: relative; }
.slide { display: none; font-size: 18px; font-style: italic; color: #555; line-height: 1.6; padding: 20px; }
.slide.active { display: block; animation: fade 0.6s ease; }
.slider-btn { background: none; border: none; font-size: 28px; cursor: pointer; color: #aaa; transition: 0.3s; padding: 10px; }
.slider-btn:hover { color: var(--blue); transform: scale(1.2); }
.slider-dots { margin-top: 25px; }
.dot { display: inline-block; width: 10px; height: 10px; background: #ddd; border-radius: 50%; margin: 0 6px; cursor: pointer; transition: 0.3s; }
.dot:hover { background: #bbb; }
.dot.active { background: var(--blue); transform: scale(1.3); }

/* Videos Carousel */
.video-tours { padding: 100px 5%; }
.video-tours h2 { margin-bottom: 50px; }
.video-carousel { 
    display: flex; overflow-x: auto; gap: 20px; padding: 20px 5px; 
    scroll-snap-type: x mandatory; margin-bottom: 20px; -ms-overflow-style: none; scrollbar-width: none;
}
.video-carousel::-webkit-scrollbar { display: none; }
@media (min-width: 1200px) { .video-carousel { justify-content: center; } }
.video-item { 
    flex: 0 0 280px; scroll-snap-align: center; position: relative; aspect-ratio: 9/16; 
    border-radius: 16px; overflow: hidden; background: #111; box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
    border: 1px solid rgba(255,255,255,0.05); transition: transform 0.4s ease, border-color 0.4s ease; 
    transform: translateZ(0);
}
.video-item:hover { transform: translateY(-5px); border-color: rgba(0, 98, 255, 0.3); }
.video-item video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Booking Form */
.form-container { max-width: 550px; margin: 0 auto; text-align: left; border: 1px solid rgba(255,255,255,0.1); padding: 50px; border-radius: 16px; background: rgba(10,14,20,0.85); backdrop-filter: blur(15px); box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-size: 14px; color: #ddd; font-weight: 500; }
.form-container input[type="text"], .form-container input[type="email"] { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.15); color: white; border-radius: 8px; outline: none; transition: 0.3s; font-size: 15px; }
.form-container input[type="text"]:focus, .form-container input[type="email"]:focus { box-shadow: 0 0 0 2px rgba(0, 98, 255, 0.4); border-color: var(--blue); background: rgba(255,255,255,0.05); }

/* Кнопка "На головну" */
.btn-back {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
    background-color: rgba(255,255,255,0.05); color: #fff;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s ease; margin-bottom: 25px; cursor: pointer;
}
.btn-back:hover { background-color: var(--blue); border-color: var(--blue); transform: translateY(-3px); }

/* Custom Phone Field */
.phone-group { position: relative; }
.phone-input-wrapper { display: flex; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; position: relative; transition: 0.3s; }
.phone-input-wrapper:focus-within { box-shadow: 0 0 0 2px rgba(0, 98, 255, 0.4); border-color: var(--blue); background: rgba(255,255,255,0.05); }
.phone-input-wrapper.error { border-color: #ff4444; box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2); }
.country-selector { display: flex; align-items: center; gap: 8px; padding: 14px 18px; cursor: pointer; border-right: 1px solid rgba(255,255,255,0.15); user-select: none; }
.country-selector .arrow { font-size: 10px; color: #999; transition: transform 0.3s; }
.country-selector.active .arrow { transform: rotate(180deg); }
.country-list { position: absolute; top: calc(100% + 5px); left: 0; width: 220px; background: #1a1a1a; border: 1px solid #333; border-radius: 8px; list-style: none; padding: 8px 0; z-index: 10; display: none; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
.country-list.show { display: block; animation: fade 0.2s ease forwards; }
.country-list li { padding: 12px 18px; cursor: pointer; color: #ddd; display: flex; align-items: center; gap: 12px; transition: background 0.2s; font-size: 14px; }
.country-list li:hover { background: #2a2a2a; color: #fff; }
#phone-input { flex: 1; border: none !important; outline: none; background: transparent; color: white; padding: 14px 18px; font-size: 15px; }
.error-message { color: #ff4444; font-size: 13px; margin-top: 8px; display: none; align-items: center; gap: 6px; }
.phone-group.has-error .error-message { display: flex; }

/* Custom Radio */
.radio-group-vertical { display: flex; flex-direction: column; gap: 15px; margin-top: 10px; }
.custom-radio { display: flex; align-items: center; position: relative; padding-left: 32px; cursor: pointer; font-size: 15px; color: #ccc; user-select: none; transition: color 0.2s; }
.custom-radio:hover { color: #fff; }
.custom-radio input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.radio-mark { position: absolute; top: 50%; left: 0; transform: translateY(-50%); height: 20px; width: 20px; background-color: transparent; border: 2px solid #666; border-radius: 50%; transition: 0.3s ease; }
.radio-mark:after { content: ""; position: absolute; display: none; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }
.custom-radio input:checked ~ .radio-mark { border-color: var(--blue); }
.custom-radio input:checked ~ .radio-mark:after { display: block; }

/* Socials Bottom */
.form-bottom-socials { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.f-social { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; width: 65px; }
.icon-circle { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.f-social:hover .icon-circle { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.3); }
.f-social span { font-size: 11px; color: #aaa; line-height: 1.3; font-weight: 500; transition: color 0.3s; }
.f-social:hover span { color: #fff; }
.icon-circle.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.icon-circle.tg { background-color: #2AABEE; }
.icon-circle.tt { background-color: #000000; border: 1px solid #333; }
.icon-circle.fb { background-color: #1877F2; }
.icon-circle.vb { background-color: #7360F2; }

/* JS Animation Class (Оптимізована для зменшення лагів) */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); will-change: opacity, transform; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Footer */
footer { background-color: #050505; color: white; padding: 60px 5% 30px 5%; text-align: center; border-top: 1px solid #111; }
.footer-contacts { display: flex; justify-content: space-around; flex-wrap: wrap; margin-bottom: 40px; gap: 30px; }
.contact-block h4 { font-size: 20px; margin-bottom: 12px; font-weight: 600; }
.contact-block p { color: #777; font-size: 14px; text-decoration: underline; cursor: pointer; transition: color 0.3s; }
.contact-block p:hover { color: #fff; }
.copyright { font-size: 13px; color: #555; border-top: 1px solid #1a1a1a; padding-top: 25px; }

/* ========================================= */
/* --- АДАПТИВНІСТЬ ДЛЯ МОБІЛЬНИХ (MOBILE) --- */
/* ========================================= */
@media (max-width: 768px) {
    /* ЗНИЩУЄМО ЛАГИ СКОРОЛУ: Відключаємо fixed фони і важкий blur */
    .bg-road, .bg-bus, .bg-forest { background-attachment: scroll !important; }
    .route-card, .detail-card, .about-content, .form-container { backdrop-filter: none; background: rgba(20, 20, 25, 0.95); }
    header { backdrop-filter: blur(5px); background-color: rgba(10, 10, 10, 0.98); }

    header { padding: 15px 20px; }
    .header-logo { height: 35px; }
    .menu-toggle { display: flex; }
    .desktop-socials { display: none; }
    .mobile-socials { display: flex; margin-top: 20px; gap: 20px; }
    
    nav { position: absolute; top: 100%; left: -100%; width: 100%; height: 100vh; background: rgba(10, 10, 10, 0.98); flex-direction: column; align-items: center; padding: 40px 0; transition: left 0.3s ease; border-bottom: none; }
    nav.active { left: 0; }
    nav a { margin: 15px 0; font-size: 18px; color: #fff; }

    .hero { padding-top: 80px; min-height: 600px; }
    .hero h1 { font-size: 34px; line-height: 1.2; }
    .hero h2 { font-size: 18px; margin-bottom: 30px; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 280px; gap: 15px; }
    .btn { padding: 16px 20px; width: 100%; }
    
    .stats-container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: transparent; border: none; padding: 20px; margin-top: 20px; }
    .stat-box { padding: 15px 10px; background: rgba(255,255,255,0.08); border-radius: 12px; min-width: 0; }
    .stat-box h3 { font-size: 28px; }
    
    section { padding: 60px 5%; }
    section h2 { font-size: 28px; }
    .subtitle { font-size: 15px; margin-bottom: 30px; }
    
    .comfort-container { flex-direction: column-reverse; gap: 20px; }
    .video-wrapper { border-radius: 12px; margin-bottom: 15px; }
    .feature-box { padding: 12px 20px; font-size: 14px; }

    .cards-grid, .benefits-grid { gap: 20px; }
    .route-card, .detail-card, .benefit-item { width: 100%; max-width: 350px; }
    
    .main-image-wrapper { max-height: 300px; }
    .thumbnail-row { justify-content: flex-start; padding-bottom: 10px; }
    .thumb { width: 60px; height: 60px; }
    .service-features-bar { padding: 20px 10px; gap: 15px 5px; }
    .s-feature { min-width: 30%; }
    .s-feature svg { width: 28px; height: 28px; }
    .s-feature span { font-size: 11px; }

    .form-container { padding: 30px 20px; }
    .form-bottom-socials { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .about-content { padding: 30px 20px; }
}