@font-face {
    font-family: 'Widock';
    src: url('../static/fonts/Widock\ TRIAL\ Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

  @font-face {
    font-family: 'Gotham';
    src: url('../static/fonts/gotham_medium.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Homepage';
    src: url('../static/fonts/HomepageBaukasten-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham', sans-serif;
}

body {
    background: white;
    color: #000;
}

.container {
    max-width: 1152px;
    width: 60%;
    margin: 0 auto;
    padding: 24px 16px 24px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
}

.header-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.header-bottom{
    justify-content: center;
    display: none;
}

@media (max-width:768px){
    .header-bottom{
        display: none !important;
    }
    
    .call-btn{
        display: none;
    }
}

.phone-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-photo {
    height: 40px;
    padding-right: 10px;
}

.logo-text {
    padding-top: 5px;
    font-family: "Homepage";
    font-size: 30px;
}



.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    margin-left: auto;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
}

@media (max-width: 950px){
    .contact-info{
        display: none;
    }
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    border: none;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    background-color: #FFEB28;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 72px;
    height: 32px;
    border-radius: 8px;
    justify-content: center;
}


.lang-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFEB28;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: auto;
    width: 72px;
    z-index: 100;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 12px;
    font-size: 12px;
    color: #000;
    border-radius: 6px;
    margin: 2px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.lang-option:hover {
    background: #FFF9BB;
}

.lang-switcher:hover .lang-btn {
    background: #FFF9BB;
}

.lang-switcher:hover .lang-btn i {
    transform: rotate(180deg);
}

.social-icons {
    position: absolute;
    top: 180px;
    left: 395px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-icons i {
    font-size: 26px;
    color: white;
    background: #3b82f6;
    padding: 16px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icons i:hover {
    transform: translateY(-4px);
}


.main-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1;
}

.form-group {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 14px;
}

.example {
    color: #0073F0;
    margin-top: 1px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-group input {
    border: 1px solid #000;
    border-radius: 8px;
    padding: 14px 20px;
    width: 280px;
    background-color: #D7F0FF;
    font-size: 16px;
    transition: all 0.3s ease;
}


.input-group input:focus, .checkbox-item input:focus {
    outline: none;
    border-color: #0073F0;
    box-shadow: 0 0 0 3px rgba(0, 115, 240, 0.2);
    background-color: #D7F0FF;
}



.calculate-btn {
    display: block;
    margin: 0 auto 5px;
    margin-top: 50px;
    background: #FFEB28;
    color: #000;
    padding: 25px 50px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
}

.calculate-btn:hover {
    background: #FFDF28;
}

.label-info{
    margin-top: 2px;
    display: flex;
    justify-content: center;
    color: #A6A6A6;
    font-size: 14px;
}

.label-link{
    margin-top: 2px;
    display: flex;
    justify-content: center;
    color: #A6A6A6;
    font-size: 14px;
}

.bank-icon{
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
}

@media (max-width: 768px) {
    .bank-icon {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: 25px;
        max-width: 100%;
        width: auto;
        padding: 0 16px;
        box-sizing: border-box;
    }
}

.form-holder {
     display: block;
  align-items: center;
  justify-content: center;
  padding: 30px;
    
}

.form-input{
    margin-right: 60px;
    margin-bottom: 16px;
}

.form-input > label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-holder-call{
     display: block;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.form-title{
    display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 24px;
}

.form-input .input-currency{
    display: block;
    align-items: center;
    justify-content: center;
}
.input-currency .currency {
    position: absolute;
    transform: translateY(-50%);
    background: #fff;
    color: #0b83ff;
    font-weight: 700;
    font-size: 22px;
    padding: 6px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(11, 131, 255, 0.18);
    pointer-events: none;
    margin-top: 20px;
    border: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="phone"] {
  width: 100%;
  height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  box-sizing: border-box;
  font-size: 15px;
  outline: none;
  transition: box-shadow .15s, border-color .15s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  border-color: rgba(11,131,255,0.9);
  box-shadow: 0 2px 6px rgba(11,131,255,0.08);
}

input[readonly] {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

input[readonly]:focus {
  border-color: rgba(0,0,0,0.12);
  box-shadow: none;
}

.form-radio{
    font-size: 14px;
  color: #222;
  margin-bottom: 16px;
  margin-top: 16px;
}

.form-radio > label {
    font-size: 14px;
    font-weight: 600;
  margin-bottom: 10px;
    display: block;
}

.form-radio .radioinput[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin: 0;
  vertical-align: middle;
  background: #fff;
}

.form-radio .radio input[type="radio"]:checked {
  border-color: #0b83ff;
  background: radial-gradient(circle at 50% 50%, #0b83ff 50%, transparent 51%);
}

.form-radio .radio span {
  font-size: 13px;
  color: #222;
}

.btn-submit {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(#0b90ff, #0772d9);
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.06), inset 0 -6px 18px rgba(0,0,0,0.06);
  font-size: 14px;
}

.btn-submit-top {
  display: none;
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(#0b90ff, #0772d9);
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.06), inset 0 -6px 18px rgba(0,0,0,0.06);
  font-size: 14px;
}

@media(max-width:768px){
    .btn-submit-top{
        display: block;
    }
}

.btn-submit-call {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(#0b90ff, #0772d9);
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.06), inset 0 -6px 18px rgba(0,0,0,0.06);
  font-size: 14px;
}

.form-input-phone {
    margin-bottom: 16px;
    margin-top: 16px;
}
.form-input-phone label{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  margin-top: 12px;
}

.form-input-phone label:first-child {
    margin-top: 0;
}

@media (max-width: 360px) {
  .insurance-form { width: 92%; padding: 18px; }
  .form-header .brand { font-size: 24px; }
}
.banner {
    display: flex;
    background: #2563eb;
    text-align: center;
    justify-content: center;
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #D7F0FF;
}

.banner img {
    width: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

.banner p {
    padding-top: 3px;
}

.info {
    background: linear-gradient(135deg, #F0F8FF 0%, #C0E0F0 100%);
    position: relative;
}

.custom-divider-bottom {
    position: relative;
    z-index: 2;
}


.info > * {
    position: relative;
    z-index: 1;
}

.info-section {
    background: transparent;
    max-width: 770px;
    width: 60%;
    margin: 0 auto;
    padding: 24px 16px 24px;
    border-radius: 20px;
}

.info-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
}



.tag-outline {
    background-color: white; 
    padding: 20px;
    border-radius: 15px;
    font-weight: bold;
    height: max-content;
    font-size: 32px;
    line-height: 120%;
}

.tag-white {
    background-color: white; 
    padding: 15px;
    border-radius: 50px;
    color: #000; 
}

.tag-yellow {
    background-color: #ffeb3b; /* Желтый фон для желтого тега */
    padding: 15px;
    border-radius: 50px;
    color: #000; /* Черный текст */
}

.tag-blue {
    background-color: #2196f3; /* Синий фон для синего тега */
    padding: 15px;
    border-radius: 50px;
    color: white; /* Белый текст */
}

.info-text {
    margin: 0 auto;
    margin-top: 48px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 40px;
    font-size: 22px;
    line-height: 100%;
}

.info-content {
    padding-top: 24px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.image-wrapper {
    position: relative;
}

.decor-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
}

.car-photo {
    height: 450px;
    border-radius: 20px;
    object-fit: contain;
}

.info-text-block {
    font-size: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    line-height: 100%;
}

.tags {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.tag_row {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    flex-basis: 100%;
}

.tag-outline {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.tag-row {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-basis: 100%;
}

.tag-row:nth-child(1) { order: 1; }
.tag-row:nth-child(2) { order: 2; }
.tag-row:nth-child(3) { order: 3; }

.tag {
    font-size: 20px;
    padding: 8px 18px;
    border-radius: 24px;
    display: inline-block;
    border: 2px solid transparent;
}

.blue {
    background-color: #4d90fe;
    color: white;
}

.outline {
    background-color: white;
    color: black;
    border-color: white;
}

.strong-blue {
    background-color: #0057ff;
    color: white;
}

.image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.info-text-block p {
    margin-top: 0;
}

@media (max-width: 768px) {
    .info-content {
        flex-direction: column;
    }
    
    .tags {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .tag-row {
        flex-direction: row;
    }
}

.faq-wrapper {
    background: linear-gradient(180deg, #D7F0FF 0%, #C0E0F0 100%);
    width: 100%;
    padding: 0;
    margin: 0;
}

.faq-section {
    background: transparent;
    max-width: 1152px;
    width: 50%;
    margin: 0 auto;
    padding: 48px 16px 24px;
    position: relative;
    z-index: 1;
}
  
.faq-item {
    background: white;
    border-radius: 999px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
  
.faq-item:hover {
    background: #f1f1f1;
}
  
.faq-item span {
    font-size: 28px;
    font-weight: 900;
}


  
.faq-icon {
    width: 48px;
    height: 48px;
    background: #FFEB00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
  
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
  
.faq-icon i {
    font-size: 18px;
    transition: transform 0.3s ease;
}
  
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: white;
    border-radius: 24px;
    padding: 0 24px;
    font-size: 22px;
    line-height: 1.6;
    margin-top: -8px;
    margin-bottom: 16px;
    transition: max-height 0.5s ease, padding 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
  
.faq-item.active + .faq-answer {
    max-height: 400px;
    padding: 40px 44px 44px;
    opacity: 1;
    visibility: visible;
}
  
.faq-item.active .faq-icon i::before {
    content: "\f068";
}

.provider-text {
    color: #2563eb;
    font-size: 14px;
    margin-top: 24px;
    margin-bottom: 12px;
}


.footer {
    background-color: white;
    padding: 32px 48px;
    font-family: sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    
  }

.footer-top{
    display: flex;
    justify-content: center;
}




.footer-top .payments {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 5px;
}



.footer-top .payments img {
  height: 30px;
  display: block;
  filter: none;
}

@media (max-width:768px){
    .payments img{
        width: auto;
    }
}
.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 24px;
}

.footer-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 32px;
}

.footer-logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo-text {
    font-family: "Homepage", sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}
  
.footer-center.logo-photo{
    height: 36px;
    display: flex;
    justify-content: flex-start;
}

.call-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.call-btn {
  background: #FFE000; 
  color: #000;
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: none;
  transition: transform .08s ease;
  margin-top: 0;
}

.call-btn-top {
  background: #FFE000; 
  color: #000;
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: none;
  transition: transform .08s ease;
  margin-top: 20px;
}
.call-btn:active { transform: translateY(1px); }


.contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact .phone-icon{
    font-size: 20px;
}
.phone-info .phone{
  font-weight: 600;
  color: #111;
  text-decoration: none;
  font-size: 12px;
}

.phone-info .hours {
  font-size: 12px;
  color: #666;
}

  
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 24px 0;
    justify-content: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.footer-links a {
    text-decoration: none;
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
    background: #f3f4f6;
}

.footer-links a:hover::before {
    width: calc(100% - 32px);
}

    .footer-bottom {
        display: flex;
        justify-content: center;
        color: #9ca3af;
        font-size: 12px;
        text-align: center;
        padding: 16px 16px 0;
        line-height: 1.5;
    }

@media (min-width: 768px) {
    .info-content {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .radio-group {
        margin-left: 0;
        width: 100%;
        padding: 0 16px;
    }
    
    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .input-group input {
        width: 100%;
        padding: 12px 16px;
    }
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s;
}

.modal-content {
    background: white;
    margin: 15% auto;
    padding: 32px;
    width: 400px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modal-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2563eb;
    margin-top: 20px;
    padding: 12px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    transition: all 0.3s;
}

.modal-link:hover {
    background: #2563eb;
    color: white;
}

.modal-close {
    position: absolute;
    right: 24px;
    top: 16px;
    font-size: 28px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Мобильная адаптация */

@media (max-width: 768px) {
    /* Контейнер */
    .container {
        width: 95% !important;
        padding: 16px 12px !important;
        max-width: 100% !important;
    }

    /* Header */
    .header {
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        gap: 0;
        padding: 16px 20px !important;
        flex-wrap: wrap;
    }

    .header-top {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .header-right {
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 4px;
        margin-left: 0 !important;
        order: 0;
    }

    .logo {
        position: static !important;
        transform: none !important;
        margin-right: 0 !important;
        order: 0;
        justify-content: flex-start;
        align-items: center;
    }

    .logo a {
        align-items: center;
    }

    .logo-photo {
        height: 36px !important;
        vertical-align: middle;
    }

    .logo-text {
        font-size: 24px !important;
        padding-top: 0;
        line-height: 1;
        display: flex;
        align-items: center;
    }

    .lang-switcher {
        margin-left: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .contact-info {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        justify-content: flex-end;
    }

    .contact-info .phone-icon {
        display: block !important;
        width: 20px !important;
        height: 20px !important;
    }

    .phone-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .phone-info .phone {
        font-size: 14px !important;
        line-height: 1.2;
        margin: 0;
    }

    .phone-info .hours {
        font-size: 11px !important;
        line-height: 1.2;
        margin: 0;
    }

    .phone-icon {
        width: 20px !important;
        height: 20px !important;
    }

    /* Формы */
    .form-border {
        padding: 20px 16px !important;
        margin: 20px auto !important;
        border-radius: 16px;
    }

    .form-group {
        flex-direction: column;
        gap: 16px;
    }

    .input-group {
        width: 100%;
    }

    .input-group label {
        font-size: 16px;
    }

    .form-input {
        margin-right: 0 !important;
        margin-bottom: 16px;
    }

    .form-input > label {
        font-size: 16px !important;
    }

    .form-input-phone {
        margin-right: 0 !important;
    }

    .form-input-phone label {
        font-size: 16px !important;
    }

    .form-radio .radio {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-radio .radio label {
        font-size: 16px;
    }

    .form-radio > label {
        font-size: 16px !important;
    }

    /* Модальные окна */
    .form {
        width: 95% !important;
        max-width: 95% !important;
        padding: 24px 20px !important;
        margin: 10% auto !important;
    }

    .form-call {
        width: 95% !important;
        max-width: 95% !important;
        padding: 24px 20px !important;
        margin: 10% auto !important;
    }

    .form-title {
        font-size: 24px !important;
    }

    .closebtn,
    .closecallbtn {
        font-size: 24px;
        top: 12px;
        right: 16px;
    }

    /* Кнопки */
    .calculate-btn {
        width: 100%;
        padding: 16px;
        font-size: 18px;
        color: #000;
    }

    .call-btn,
    .call-btn-top {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    .btn-submit {
        padding: 14px;
        font-size: 16px;
    }

    /* Информационная секция */
    .info-section {
        padding: 24px 16px !important;
    }

    .info-content {
        flex-direction: column;
        gap: 24px;
    }

    .car-photo {
        max-width: 100%;
        height: auto !important;
        max-height: 300px !important;
    }

    .info-text-block {
        font-size: 1.3em;
        text-align: center;
    }

    .tag-outline {
        text-align: center;
    }

    .tags {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }

    .tag-row {
        justify-content: center;
    }

    .tag {
        font-size: 1.1em;
        padding: 0.3em 0.8em;
    }

    /* FAQ секция */
    .faq-section {
        width: 95% !important;
        padding: 32px 16px 24px !important;
    }

    .faq-item {
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 16px;
    }

    .faq-answer {
        padding: 0 18px !important;
        font-size: 15px;
        opacity: 0;
        visibility: hidden;
    }

    .faq-item.active + .faq-answer {
        padding: 12px 18px !important;
        opacity: 1;
        visibility: visible;
    }

    /* Footer */
    .footer-content-wrapper {
        padding: 32px 0 20px;
    }

    .footer-center {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
        align-items: center;
    }

    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        padding: 20px 16px;
        align-items: stretch;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        margin: 0 16px 20px;
    }
    
    .footer-links a {
        text-align: center;
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
        background: #f9fafb;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        background: #f3f4f6;
        color: #2563eb;
        transform: translateY(-1px);
    }
    
    .footer-links a::before {
        display: none;
    }

    .footer-logo-text {
        font-size: 28px !important;
    }

    .footer .contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .footer .contact .phone-icon {
        display: none !important;
    }

    .footer .contact > .phone-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer .phone-info {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        gap: 4px;
    }

    .footer .phone-info .phone {
        font-size: 14px !important;
        text-align: center;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer .phone-info .phone::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url('/static/resourses/gg_phone.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
    }

    .footer .phone-info .hours {
        font-size: 12px !important;
        text-align: center;
        margin: 0;
        width: 100%;
    }

    .footer .lang-switcher {
        display: flex;
        align-items: center;
        justify-content: center !important;
        width: auto;
        margin-left: 0;
    }

    .call-wrap {
        display: none !important;
    }

    .call-btn {
        display: none !important;
    }

    /* Заголовки */
    .main-title {
        font-size: 28px !important;
        line-height: 1.3;
        text-align: center;
    }

    /* Разделители */
    .custom-divider,
    .custom-divider-bottom {
        margin: 20px 0;
    }

    /* Ссылки в форме */
    .label-info,
    .label-link {
        font-size: 14px;
        text-align: center;
    }

    .label-link {
        margin-top: 8px;
    }

    /* Валюта кнопка */
    .input-currency .currency {
        font-size: 20px;
        padding: 4px 6px;
    }

    /* Социальные иконки */
    .social-icons {
        display: none;
    }

    /* Баннер */
    .banner {
        gap: 8px;
        padding: 12px;
        font-size: 16px;
    }

    .banner p {
        text-align: center;
        font-size: 16px;
    }

    /* Заголовки */
    .main-title {
        font-size: 26px !important;
        margin-bottom: 24px;
        line-height: 1.3;
        text-align: center;
    }

    .info-section h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    /* Чекбоксы */
    .checkbox-group {
        margin-left: 0;
        width: 100%;
    }

    .checkbox-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .checkbox-item input[name="invalid-number"] {
        width: 100%;
        margin-top: 8px;
        margin-left: 0;
    }

    /* Информационная секция */
    .info-section {
        width: 100% !important;
        padding: 24px 16px !important;
    }

    .info-text {
        font-size: 17px;
        margin: 20px 0;
    }

    .info-text-block {
        flex-direction: column-reverse;
        text-align: center;
    }

    .info-text-block p {
        margin-top: 16px;
        font-size: 17px;
    }

    .tag-outline {
        text-align: center;
    }

    .tags {
        margin-top: -16px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .tag-row {
        justify-content: center;
    }

    .tag {
        font-size: 16px;
        padding: 0.3em 0.8em;
    }

    .image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .decor-shape {
        display: none;
    }

    /* FAQ */
    .faq-section {
        width: 100% !important;
        padding: 32px 16px 24px !important;
    }

    .faq-item {
        padding: 14px 18px !important;
        font-size: 16px !important;
        border-radius: 16px;
    }

    .faq-item span {
        font-size: 16px;
        width: 85%;
    }

    .faq-answer {
        font-size: 15px !important;
        padding: 0 18px !important;
        opacity: 0;
        visibility: hidden;
    }

    .faq-item.active + .faq-answer {
        max-height: 1000px;
        padding: 12px 18px !important;
        opacity: 1;
        visibility: visible;
    }

    /* Footer */
    .footer {
        padding: 32px 20px;
    }

    .footer-logo {
        justify-content: center !important;
    }


    .contacts-mobile {
        display: flex;
        justify-content: center;
        margin-bottom: 32px;
    }

    .provider-text {
        font-size: 16px;
    }

    /* Поля ввода */
    .input-group input {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="phone"] {
        font-size: 16px !important;
    }

    /* Валюта кнопка */
    .input-currency .currency {
        font-size: 20px;
        padding: 4px 6px;
        margin-top: 18px;
    }

    /* Радио кнопки */
    .radio-group {
        margin-left: 0;
        width: 100%;
        padding: 0;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .container {
        width: 100% !important;
        padding: 12px 8px !important;
    }

    .header {
        padding: 12px 16px !important;
    }

    .phone-info .phone {
        font-size: 12px !important;
    }

    .phone-info .hours {
        font-size: 10px !important;
    }

    .phone-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .logo-text {
        font-size: 20px !important;
    }

    .form-border {
        padding: 16px 12px !important;
        border-radius: 12px;
    }

    .bank-icon {
        max-width: calc(100% - 24px);
        padding: 0 12px;
        height: 25px;
    }

    .form,
    .form-call {
        padding: 20px 16px !important;
    }

    .form-title {
        font-size: 22px !important;
    }

    .main-title {
        font-size: 24px !important;
    }

    .logo-text {
        font-size: 22px !important;
    }

    .footer-logo-text {
        font-size: 24px !important;
    }

    .car-photo {
        max-height: 250px !important;
    }

    .faq-section {
        padding: 24px 12px 20px !important;
    }

    .faq-item {
        padding: 12px 16px;
        font-size: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="phone"] {
        font-size: 16px;
        padding: 10px 12px;
    }
}