@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    background-color: #ffdb4d;
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

@media (max-width: 900px) {
    body {
        font-size: 16px;
    }
    .navigation {
        flex-direction: column;
        gap: 10px;
    }
    .header {
        padding: 35px 0;
        display: flex;
        justify-content: center;
    }
    .main-content {
        margin-top: 80px !important;
    }

    
}
body::-webkit-scrollbar {
    width: 10px;
    background-color: white;
}
body::-webkit-scrollbar-thumb {
    background-color: silver;
}
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    background-color: transparent;
}
.header {
    padding: 20px 20px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: #191919;
    transition: top 0.3s;
    z-index: 1000;
    max-width: 1920px;
    margin: 0 auto;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-link,
.footer-brand {
    text-decoration: none;
    color: rgb(255, 153, 0);
    font-weight: 900;
    font-size: 22px;
    transition: color 0.3s ease;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.nav-item {
    margin-left: 20px;
}
.nav-link {
    font-weight: 100;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 16px;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease,
    border-bottom 0.3s ease;
}

.nav-link-underline {
    border-bottom: 1px solid rgb(255, 153, 0);
    border-top: 1px solid rgb(255, 153, 0);
    transition: color 0.3s ease;
}

.nav-link-hover {
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    transition: border-bottom 0.3s ease,
                border-top 0.3s ease;
}

@media (max-width: 550px) {
    .nav-item {
        margin-left: 5px;
        font-size: 14px;
    }
    .nav-link {
        padding: 2px 5px;
    }
}

.nav-list.show {
    max-height: 100%;
    opacity: 1;
    right: 0;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.burger-line {
    width: 30px;
    height: 4px;
    background-color: rgb(255, 255, 255);
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 730px) {
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }
    .nav-list {
        display: flex;
    }

    .nav-item:first-child {
        margin-top: 20px;
    }

    .burger-menu {
        display: flex;
        margin-right: 15px;
    }
    .navigation {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 40px;
    }
}

.main-content {
    margin-top: 50px;
}

.navigation {
    margin: 0 auto;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 52px;
    }
    .navigation {
        justify-content: space-between;
    }
}

.nav-list {
    display: flex;
    gap: 14px;
    list-style: none;
}

.nav-item {
    position: relative;
}

@media (max-width: 730px) {
    .burger-menu {
        display: flex;
        z-index: 10000;
    }
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column; /* Изменяем на колонку для бокового меню */
        background-color: #191919; /* Цвет фона */
        position: fixed; /* Фиксируем меню */
        top: 0;
        right: -250px; /* Скрываем за пределами экрана */
        width: 250px; /* Ширина меню */
        height: 100%; /* Высота на весь экран */
        transition: right 0.3s ease; /* Анимация */
        z-index: 999; /* Указываем z-index */
    }
    .nav-list.active {
        display: flex;
    }
    .nav-link-underline {
        border: none;
    }
}

@media (max-width:426px) {
    
    .burger-line{
        background-color: rgb(255, 255, 255);
    }
    .main-content{
        margin-top: 0;
    }
    .slider-header{
        margin-top: 0;
    }
    .nav-list{
        top: 0;
    }
    
}

.footer {
    background-color: #191919;
    color: #ffffff; /* Светлый цвет текста */
    padding: 10px 0;
    margin-top: auto;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

.footer-content {
    max-width: 1200px; /* Максимальная ширина футера */
    margin: 0 auto; /* Центрирование */
    padding: 0 20px; /* Отступы */
    display: flex; /* Для выравнивания по строкам */
    flex-direction: column; /* Вертикальное расположение элементов */
    align-items: center; /* Центрирование элементов по горизонтали */
}

.footer-details {
    margin-bottom: 20px; /* Отступ внизу */
    text-align: center; /* Центрирование текста */
}

.footer-location,
.footer-phone,
.footer-email {
    color: #ffffff; /* Цвет текста */
    display: flex; /* Блочный элемент для переноса на новую строку */
    align-items: center;
    gap: 10px;
    text-decoration: none; /* Убираем подчеркивание */
    transition: color 0.3s; /* Плавный переход цвета */
}

.footer-links {
    margin-bottom: 20px; /* Отступ внизу */
    text-align: center; /* Центрирование */
}

.footer-links a {
    margin: 0 10px; /* Группируем ссылки с отступами */
    color: #ffffff; /* Цвет текста */
    text-decoration: none; /* Убираем подчеркивание */
    transition: color 0.3s; /* Плавный переход цвета */
}

.footer-badges {
    display: flex; /* Для выстраивания значков в ряд */
    justify-content: center; /* Центрирование */
}

.footer-age-restriction {
    max-width: 50px; /* Максимальная ширина значков */
    margin: 0 5px; /* Отступ между значками */
}

.footer-badge {
    max-width: 150px; /* Максимальная ширина значков */
    margin: 0 5px; /* Отступ между значками */
}

.footer-rights {
    text-align: center; /* Центрируем текст */
    margin-top: 20px; /* Отступ сверху */
    font-size: 12px; /* Размер шрифта */
}
.footer-warn {
    text-align: center; /* Центрируем текст */
    padding: 8px;
    font-size: 12px; /* Размер шрифта */
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Убеждаемся, что элементы остаются вертикальными на маленьких экранах */
    }
}

.privacy-content {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 80px;
}

.privacy-policy-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.compliance-title,
.data-collection-title,
.transparency-title,
.user-rights-title {
    margin-top: 30px;
    font-size: 1.5em;
    color: #000000;
}

.compliance-text,
.data-collection-text,
.transparency-text,
.user-rights-text {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .privacy-policy-title {
        font-size: 1.5em;
    }

    .privacy-text {
        font-size: 1em;
    }

    .compliance-title,
    .data-collection-title,
    .transparency-title,
    .user-rights-title {
        font-size: 1.3em;
    }
    .privacy-content {
        padding: 8px;
    }
    .privacy-policy-section {
        padding: 10px;
    }
}
@media (max-width: 460px) {
    .privacy-policy-title {
        font-size: 1.5em;
    }

    .privacy-text {
        font-size: 1em;
    }

    .compliance-title,
    .data-collection-title,
    .transparency-title,
    .user-rights-title {
        font-size: 1.3em;
    }
    .privacy-content {
        margin-top: 50px;
    }
}

.terms-content {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 80px;
}

.terms-conditions-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.terms-conditions-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.terms-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.legal-compliance-title,
.user-responsibilities-title,
.dispute-resolution-title,
.contact-info-title {
    margin-top: 30px;
    font-size: 1.5em;
    color: #000000;
}

.legal-compliance-text,
.user-responsibilities-text,
.dispute-resolution-text,
.contact-info-text {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .terms-conditions-title {
        font-size: 1.5em;
    }

    .terms-text {
        font-size: 1em;
    }

    .legal-compliance-title,
    .user-responsibilities-title,
    .dispute-resolution-title,
    .contact-info-title {
        font-size: 1.3em;
    }
    
    .terms-content {
        padding: 8px;
    }
    
    .terms-conditions-section {
        padding: 10px;
    }
}

@media (max-width: 460px) {
    .terms-conditions-title {
        font-size: 1.5em;
    }

    .terms-text {
        font-size: 1em;
    }

    .legal-compliance-title,
    .user-responsibilities-title,
    .dispute-resolution-title,
    .contact-info-title {
        font-size: 1.2em;
    }
    
    .terms-content {
        margin-top: 50px;
    }
}

.QuickScoot-parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.QuickScoot-parallax-bg {
    background-image: url('img/home/hero-bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.QuickScoot-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5); 
    margin: 0 auto;
    max-width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-app-link {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #ffae00;
    color: white;
    transition: background-color 0.3s ease;
}

.comprehensive-care {
    margin-top: 10px;
    padding: 20px;
}

.comprehensive-blocks-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.comprehensive-image-block {
    flex: 1 1 30%;
    margin: 10px;
}

.comprehensive-care-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.comprehensive-text-block {
    flex: 1 1 55%;
    margin: 10px;
}

.comprehensive-text-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.comprehensive-product-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 400;
}

.comprehensive-benefits-list {
    list-style-type: none;
    padding-left: 20px;
}

.comprehensive-benefits-list li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .comprehensive-blocks-container {
        flex-direction: column;
        gap: 25px;
    }

    .comprehensive-image-block, .comprehensive-text-block {
        flex: 1 1 100%;
    }
}

.quick-scoot-section {
    position: relative;
    padding: 50px 20px;
    background-size: cover;
    background-position: center;
    color: white;
}

.app-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
}

.app-info-content {
    position: relative;
    z-index: 1; /* Убирает накладывание на контент */
    text-align: center;
}

.app-info-section-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.app-info-blocks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Позволяет колонкам изменять порядок на меньших экранах */
}

.app-info-block {
    flex: 1;
    padding: 10px;
    min-width: 250px; /* Минимальная ширина для блоков на маленьких экранах */
}

.app-info-left-block,
.app-info-right-block {
    display: flex;
    justify-content: center;
}

.app-info-block-image {
    max-width: 100%;
    height: auto; /* Обеспечивает корректную пропорцию изображения */
}

.app-info-step-list {
    list-style-type: none; 
    padding: 0;
    text-align: left;
}

.app-info-step-list li {
    margin: 10px 0;
    font-size: 24px;
}

@media (max-width: 900px) {
    .app-info-blocks {
        flex-direction: column; /* Для мобильных устройств: меняем на колоночное расположение */
    }
    .app-info-step-list li {
        font-size: 14px;
    }
}

.new-arrivals {
    padding: 20px;
    text-align: center;
}

.new-arrivals-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000000;
    font-weight: 900;
}

.new-arrivals-card h3 {
    color: #000000;
}

.new-arrivals-slider {
    position: relative;
    overflow: hidden;
}

.new-arrivals-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: flex-start;
}

.new-arrivals-card {
    border: 2px solid #000000;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(25% - 20px);
    min-width: 200px;
}

.new-arrivals-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.new-arrivals-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.new-arrivals-card p {
    color: #000000;
}

.order-btn {
    margin-top: 10px;
    padding: 4px 25px;
    background-color: black;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

/* Медиазапрос для устройств шире 768px, но уже 1200px */
@media (min-width: 768px) and (max-width: 1200px) {
    .new-arrivals-slider-container {
        flex-wrap: wrap; /* Заставляет элементы переноситься */
    }

    .new-arrivals-card {
        flex: 0 0 calc(50% - 20px); /* 2 карточки в строке */
    }
}

/* Медиазапрос для устройств менее 768px */
@media (max-width: 768px) {
    .new-arrivals-slider-container {
        flex-direction: column; /* Столбцы */
    }

    .new-arrivals-card {
        flex: 0 0 100%; /* 1 карточка в строке */
    }
}

.why-us-section {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.why-us-section-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.why-us-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.why-us-card {
    padding: 20px;
    margin: 10px;
    width: 260px;
    text-align: center;
    transition: transform 0.2s;
}

.why-us-icon {
    font-size: 3em;
    color: #dbb417;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .why-us-card {
        width: 100%;
    }
}






.gallery-section {
    text-align: center;
    padding: 20px;
}

.gallery-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.5em;
    }
}




/* Hero Section */
.about-hero-section {
    position: relative;
    height: 600px;
    background-image: url('./img/about/about7.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
@media (max-width:900px) {
    .about-hero-section{
        margin-top: 50px;
    }
    
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.179);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mission Section */
.about-mission-section {
    padding: 60px 20px;
    background-color: #f0f8ff;
}

.about-mission-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-mission-text {
    flex: 1;
}

.about-mission-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-mission-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.about-mission-image {
    flex: 1;
    text-align: right;
}

.about-mission-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Values Section */
.about-values-section {
    padding: 60px 20px;
    background-color: #e6f7ff;
    text-align: center;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-value-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-10px);
}

.about-value-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.about-value-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-value-text {
    font-size: 1rem;
    color: #555;
}

/* Team Section */
.about-team-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about-team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-team-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-team-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-team-member {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.about-team-member-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-team-member-role {
    font-size: 1.1rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.about-team-member-bio {
    font-size: 1rem;
    color: #555;
}

/* History Section */
.about-history-section {
    padding: 60px 20px;
    background-color: #fff3e6;
    text-align: center;
}

.about-history-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-history-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-history-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Achievements Section */
.about-achievements-section {
    padding: 60px 20px;
    background-color: #e6ffe6;
    text-align: center;
}

.about-achievements-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-achievements-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-achievement-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-achievement-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.about-achievement-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-achievement-text {
    font-size: 1rem;
    color: #555;
}

/* Customer Stories Section */
.about-customer-stories-section {
    padding: 60px 20px;
    background-color: #ffe6e6;
    text-align: center;
}

.about-customer-stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-customer-stories-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about-customer-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-customer-story-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-customer-story-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.about-customer-story-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-customer-story-text {
    font-size: 1rem;
    color: #555;
}


/* Values Section */
.about-values-section {
    padding: 60px 20px;
    background-color: #e6f7ff;
    text-align: center;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-value-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-10px);
}

.about-value-icon-container {
    background-color: #4CAF50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-value-icon {
    font-size: 1.5rem;
    color: white;
}

.about-value-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-value-text {
    font-size: 1rem;
    color: #555;
}

/* Achievements Section */
.about-achievements-section {
    padding: 60px 20px;
    background-color: #fff3e6;
    text-align: center;
}

.about-achievements-container {
    max-width: 100%;
    margin: 0 auto;
}

.about-achievements-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about-achievements-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}


@media (max-width: 750px) {
    .about-achievements-timeline::before {
        display: none; /* Убираем линию временной шкалы */
    }

    .about-achievement-item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .about-achievement-icon {
        margin-bottom: 10px;
    }

    .about-achievement-content {
        margin-left: 0; /* Убираем отступы */
    }
    .about-achievement-item{
        width: 100% !important;
    }
}

.about-achievements-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #4CAF50;
    transform: translateX(-50%);
}

.about-achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 45%;
}

.about-achievement-item:nth-child(odd) {
    align-self: flex-start;
}

.about-achievement-item:nth-child(even) {
    align-self: flex-end;
}

.about-achievement-icon {
    background-color: #4CAF50;
    min-width: 60px;
    min-height: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.about-achievement-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-achievement-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-achievement-text {
    font-size: 1rem;
    color: #555;
}

/* Customer Stories Section */
.about-customer-stories-section {
    padding: 60px 20px;
    background-color: #ffe6e6;
    text-align: center;
}

.about-customer-stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-customer-stories-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about-customer-stories-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.about-customer-story-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 0 0 300px;
    text-align: center;
}

.about-customer-story-image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.about-customer-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-customer-story-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-customer-story-text {
    font-size: 1rem;
    color: #555;
}


/* Customer Stories Section */
.about-customer-stories-section {
    padding: 60px 20px;
    background-color: #ffe6e6;
    text-align: center;
}

.about-customer-stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-customer-stories-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about-customer-stories-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.about-customer-story-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 0 0 300px;
    text-align: center;
}

.about-customer-story-image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.about-customer-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-customer-story-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-customer-story-location {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
}

.about-customer-story-text {
    font-size: 1rem;
    color: #555;
}


/* Our Partners Section */
.about-partners-section {
    background-color: #fff;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-partners-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: black
}

.about-partners-description {
    text-align: center;
    font-size: 1.2rem;
    color: black;
    margin-bottom: 40px;
}

.about-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.about-partner-card {
    background-color: #ecf0f1;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.about-partner-card:hover {
    transform: translateY(-5px);
}

.about-partner-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.about-partner-name {
    font-size: 1.5rem;
    color: #34495e;
    margin: 10px 0;
}

.about-partner-description {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Sustainability Commitment Section */
.about-sustainability-section {
    background-color: #2ecc71;
    padding: 50px 20px;
    color: #fff;
}

.about-sustainability-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-sustainability-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.about-sustainability-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-sustainability-stat {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1 1 200px; /* Ensure minimal width */
    transition: background-color 0.3s;
}

.about-sustainability-stat:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.about-sustainability-stat-number {
    font-size: 3rem;
    font-weight: bold;
}

.about-sustainability-stat-text {
    font-size: 1rem;
    margin-top: 10px;
}



@media (max-width: 768px) {
    /* Hero Section */
    .about-hero-section {
        height: 300px;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    /* Mission Section */
    .about-mission-container {
        flex-direction: column;
        gap: 20px;
    }

    .about-mission-image {
        text-align: center;
    }

    .about-mission-image img {
        max-width: 80%;
    }

    /* Values Section */
    .about-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Team Section */
    .about-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* History Section */
    .about-history-container {
        max-width: 100%;
    }

    /* Achievements Section */
    .about-achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Customer Stories Section */
    .about-customer-stories-carousel {
        flex-direction: column;
        gap: 20px;
        overflow-x: visible;
    }

    .about-customer-story-card {
        flex: 1 1 auto;
    }

    /* Our Partners Section */
    .about-partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Sustainability Commitment Section */
    .about-sustainability-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Адаптация для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section */
    .about-hero-section {
        height: 350px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-description {
        font-size: 1.1rem;
    }

    /* Mission Section */
    .about-mission-container {
        flex-direction: row;
        gap: 30px;
    }

    .about-mission-image img {
        max-width: 90%;
    }

    /* Values Section */
    .about-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    /* Team Section */
    .about-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    /* Achievements Section */
    .about-achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    /* Customer Stories Section */
    .about-customer-stories-carousel {
        gap: 25px;
    }

    /* Our Partners Section */
    .about-partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    /* Sustainability Commitment Section */
    .about-sustainability-stats {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
}


.about-partners-section {
    background: linear-gradient(135deg, #f3f4f6, #ffffff);
    padding: 60px 20px;
    text-align: center;
}

.about-partners-title {
    font-size: 32px;
    font-weight: bold;
    color: black
}

.about-partners-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-partner-card {
    background: #fff;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 220px;
    transition: transform 0.3s ease-in-out;
}

.about-partner-card:hover {
    transform: scale(1.1);
}

.partner-icon img {
    width: 80px;
    height: 80px;
}

.about-partner-name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.about-partner-description {
    font-size: 14px;
    color: #666;
}

/* Секция устойчивости */
.about-sustainability-section {
    background: #504e00;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.about-sustainability-title {
    font-size: 32px;
    font-weight: bold;
    color: #d0ff00;
}

.about-sustainability-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.about-sustainability-stat {
    width: 180px;
    text-align: center;
    position: relative;
}

.about-sustainability-stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00;
}

.about-sustainability-stat-text {
    font-size: 14px;
    color: #ddd;
}

.about-sustainability-stat::after {
    content: "";
    display: block;
    height: 6px;
    width: 100%;
    background: #ffcc00;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 10px;
    animation: progress-bar 1.5s ease-in-out forwards;
}

@keyframes progress-bar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.faq-content {
    margin-top: 100px;
}

.faq-name-home-page {
    text-align: center;
    font-weight: 900;
    font-size: 28px;
    padding: 0 15px;
}

.faq-section {
    padding: 20px;
    border-radius: 8px;
}
.faq-section h2 {
    color: #333;
}

.faq--description {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #666;
}

.faq-list {
    list-style: none;
    padding: 0;
    color: #666;
}

.faq-item {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #fff;
    transition: background-color 0.3s;
}

.faq-details {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 10px;
    border: 3px solid #000000;
    background-color: #f1f1f1;
    color: black;
}

.faq-details p {
    margin-top: 0px;

}

.faq-details.show {
    max-height: 200px;
    opacity: 1;
    padding: 10px;
}

@media (max-width: 600px) {
    .faq-description {
        font-size: 1em;
    }

    .faq-item {
        font-size: 0.9em;
    }
}

.scooter-section {
    padding: 20px;
    text-align: center;
    margin-top: 80px;
}

.scooter-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.scooter-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.scooter-card {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    width: calc(25% - 20px); /* Для 4 колонок на больших экранах */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.scooter-card:hover {
    transform: translateY(-5px);
}

.scooter-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.scooter-name {
    font-size: 1.5rem;
    margin: 10px 0 5px;
}

.scooter-description {
    font-size: 1rem;
    margin: 5px 0;
}

.scooter-price {
    font-size: 1.2rem;
    margin: 10px 0;
    color: rgb(194, 0, 0);
}

.scooter-button {
    display: inline-block;
    padding: 10px 40px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease,
                background-color 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .scooter-card {
        width: calc(50% - 20px); /* Для 2 колонок на средних экранах */
    }
}

@media (max-width: 480px) {
    .scooter-card {
        width: 100%; /* Для 1 колонки на маленьких экранах */
    }
}

.scooter-details {
    background-color: #ffffff; /* Белый фон для контрастности */
    padding: 30px 20px; /* Отступы по вертикали и горизонтали */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Тень для создания эффекта подъема */
    margin: 20px 0; /* Отступ над и под секцией */
}

.scooter-details__title {
    font-size: 2rem; /* Размер шрифта для заголовка */
    text-align: center; /* Выравнивание текста по центру */
    color: #333; /* Темный цвет текста */
    margin-bottom: 25px; /* Отступ под заголовком для разделения с остальным контентом */
}

.scooter-details__item {
    background: #f9f9f9; /* Светлый фон для отдельных деталей самокатов */
    padding: 20px; /* Внутренние отступы */
    border-radius: 6px; /* Закругленные углы */
    margin-bottom: 15px; /* Отступ между карточками */
    transition: background 0.3s; /* Плавный переход к изменению фона */
}

.scooter-details__name {
    font-size: 1.5rem; /* Размер шрифта для названий самокатов */
    margin-bottom: 10px; /* Отступ под названием */
    color: #bd8100; /* Цвет текста для названий (синий) */
    text-transform: uppercase; /* Преобразование текста в верхний регистр для выделения */
}

.scooter-details__description {
    font-size: 1rem; /* Размер текста для описания */
    color: #555; /* Цвет текста для описания */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .scooter-details__item {
        padding: 15px; /* Уменьшенные отступы на мобильных */
    }

    .scooter-details__title {
        font-size: 1.8rem; /* Уменьшение размера заголовка */
    }

    .scooter-details__name {
        font-size: 1.3rem; /* Уменьшение размера названий */
    }

    .scooter-details__description {
        font-size: 0.9rem; /* Уменьшение размера описания */
    }
}

@media (max-width: 480px) {
    .scooter-details__item {
        padding: 10px; /* Дополнительное уменьшение отступов на очень маленьких экранах */
    }

    .scooter-details__title {
        font-size: 1.5rem; /* Еще большее уменьшение размера заголовка */
    }

    .scooter-details__name {
        font-size: 1.2rem; /* Уменьшение названий до читабельного размера */
    }

    .scooter-details__description {
        font-size: 0.8rem; /* Уменьшение размера описания */
    }
}

.advantages-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 120px;
    margin-top: 50px;
    background-color: white;
}

.advantages-title {
    text-align: center;
    font-size: 38px;
    color: #333;
    margin-bottom: 30px;
}

.advantage-block {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.advantage-image {
    width: 50%;
    height: auto;
    border-radius: 30px;
}

.advantage-text {
    width: 50%;
    padding: 0 20px;
}

.advantage-subtitle {
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
}

.advantage-description {
    font-size: 16px;
    color: #555;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 40px 20px;
    }
    .advantage-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .advantage-image {
        width: 100%;
        margin-bottom: 10px;
    }

    .advantage-text {
        width: 100%;
        padding: 0;
    }

    .revers-text {
        flex-direction: column-reverse;
    }
}

.production-section {
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.flex-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.left-block, .right-block {
    flex: 1;
    max-width: 300px;
    margin: 10px;
    padding: 20px;
}

.center-block {
    flex: 1;
    max-width: 320px; 
    margin: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    font-size: 3em;
}

.center-content {
    text-decoration: underline;
}

.service {
    margin: 15px 0;
    text-align: left;
}

.icon {
    font-size: 1.5em;
    margin-right: 10px;
}
.production-btn {
    text-decoration: none;
    border: 2px solid black;
    padding: 6px 8px;
    color: black;
    transition: background-color 0.3s ease,
                color 0.3s ease;
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        align-items: center;
    }

    .left-block, .right-block, .center-block {
        max-width: 100%;
    }
}

.delivery-options-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.delivery-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: rgb(0, 0, 0);
}

.delivery-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.delivery-card {
    background-color: #ffdb4d;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    overflow: hidden;
    text-align: left;
}

.delivery-card-image {
    width: 100%;
    height: auto;
}

.card-heading {
    font-size: 1.5em;
    margin: 15px 10px;
    color: #000000;
}

.card-description {
    font-size: 1.1em;
    margin: 10px 10px 20px;
    color: #333;
}

.delivery-button {
    display: inline-block;
    margin: 15px 10px;
    padding: 10px 20px;
    background-color: rgb(163, 149, 104);
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pickup-link {
    display: inline-block;
    margin: 15px 10px;
    color: rgb(163, 149, 104);
    text-decoration: none;
    font-weight: bold;
}

.pickup-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .delivery-card {
        width: 100%;
    }
}

.cooperation-parallax-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.cooperation-parallax-bg {
    background-image: url('img/cooperation/cooperation-bg-parallax.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.cooperation-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    padding: 80px;
    background-color: rgba(0, 0, 0, 0.5); 
    margin: 0 auto;
    max-width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.cooperation {
    padding: 20px;
    text-align: center;
}

.cooperation-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000000;
    font-weight: 900;
}

.cooperation-card h3 {
    color: #000000;
}

.cooperation-slider {
    position: relative;
    overflow: hidden;
}

.cooperation-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: flex-start;
}

.cooperation-card {
    border: 3px solid #000000;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(25% - 20px);
    min-width: 200px;
}

.cooperation-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.cooperation-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.cooperation-card p {
    color: #000000;
}

.cooperation-prev, .cooperation-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #8c8c8c86;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.cooperation-prev {
    left: 10px;
}

.cooperation-next {
    right: 10px;
}

@media (max-width: 768px) {
    .cooperation-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .cooperation-card {
        flex: 0 0 calc(100% - 20px);
    }
}


/* Hero Section */
.app-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 60px 20px;
    background-color: #f0f8ff;
    padding: 70px;
    margin-top: 50px;
}

@media (max-width:769px) {
    .app-hero-section{
        padding: 15px;
    }
    
}

.app-hero-content {
    max-width: 600px;
}

.app-hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.app-hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.app-download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(216, 216, 36);
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.app-download-button:hover {
    background-color:  rgb(159, 159, 35);
}

.app-hero-image img {
    max-width: 100%;
    height: auto;
}

/* Bonuses Section */
.app-bonuses-section {
    padding: 60px 20px;
    background-color: #e6f7ff;
    text-align: center;
}

.app-bonuses-container {
    max-width: 800px;
    margin: 0 auto;
}

.app-bonuses-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.app-bonuses-list {
    list-style: none;
    padding: 0;
}

.app-bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
}

.app-bonus-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .app-hero-section {
        flex-direction: column;
        text-align: center;
    }

    .app-hero-content {
        margin-bottom: 40px;
        margin-top: 30px;
    }

    .app-hero-title {
        font-size: 2rem;
    }

    .app-hero-description {
        font-size: 1rem;
    }

    .app-bonuses-title {
        font-size: 1.8rem;
    }

    .app-bonus-item {
        font-size: 0.9rem;
    }
}



.contact-form-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 50px;
    gap: 30px;
    padding: 10px;
  }
  
  .form-image {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .form-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .form-content {
    flex: 1;
    max-width: 500px;
    padding: 20px;
    background-color: rgb(66, 69, 21);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .form-content h2 {
    font-size: 1.8rem;
    color: #ffffffc2;
    margin-bottom: 20px;
  }
  
  .form-content input,
  .form-content textarea,
  .form-content button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;      
    max-width: 100%;  
    resize: vertical;  
    padding: 10px;     
    font-size: 1rem;  
    border-radius: 8px;
    box-sizing: border-box;  
    max-height: 260px;
    background-color: rgb(174, 174, 174);
    color: black;
  }
  .form-content textarea{
    margin-top: 10px;
  }
  
  .form-content button {
    background-color: #ffdb4d;
    color: black;
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  
  .form-content label {
    font-size: 1rem;
    color: #ffffffd2;
    
  }
  
  .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px !important;
  }
  
  .checkbox input {
    margin-right: 10px;
    width: 20px;
    margin-bottom: 0px;
  }
  
  .checkbox label a {
    color: #2980b9;
    text-decoration: none;
    text-wrap: nowrap;
  
  }
  
  .checkbox label a:hover {
    text-decoration: underline;
  }
  


.location-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    margin: 20px;
}

.location-info {
    flex: 1;
    margin-right: 20px;
}

.location-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: black;
}

.location-description {
    font-size: 1.2em;
    color: black;
    line-height: 1.5;
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .location-section {
        flex-direction: column;
    }
    .contact-form-container{
        flex-direction: column;
    }
    

    .location-info {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .location-title {
        font-size: 1.8em;
    }

    .location-description {
        font-size: 1em;
    }

    .location-map {
        height: 300px;
    }

    .location-map iframe {
        height: 100%;
    }
}

.partnership-section {
    background-color: #f9f9f9;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partnership-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.partnership-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.partnership-section a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #000000;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

@media (min-width: 1025px) {
    .header-link:hover,
    .footer-brand:hover {
        color: rgb(255, 255, 255);
    }
    .nav-link-underline:hover {
        color: rgb(255, 153, 0);
    }
    .nav-link-hover:hover {
        border-bottom: 1px solid white;
        border-top: 1px solid white;
    }
    .footer-location:hover,
    .footer-phone:hover,
    .footer-email:hover {
        color: rgb(255, 153, 0);
    }
    .footer-links a:hover {
        color: rgb(255, 153, 0);
    }
    .email-privacy-terms:hover {
        text-decoration: underline;
    }
    .hero-app-link:hover {
        background-color: #bd8100;
    }
    .order-btn:hover {
        background-color: #ffae00;
        color: black;
    }
    .why-us-card:hover {
        transform: scale(1.05);
    }
    .scooter-button:hover {
        background-color: #ffae00;
        color: black;
    }
    .scooter-details__item:hover {
        background: #eaeaea; /* Изменение фона при наведении */
    }
    .cooperation-prev:hover, .cooperation-next:hover {
        background-color: #00000086;
    }
    .partnership-section a:hover {
        background-color: #bd8100;
    }
}


.whiteText{
    color: white;
}



.thank-you-container {
    max-width: 600px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  .thank-you-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .thank-you-container p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .home-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #81747f;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .home-button:hover {
    background-color: #393638;
  }

  .quick-scoot-section{
    background-image: url('./img/home/app-section-1.jpg');
  }

