body {
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

.padding-80 {
    padding: 0 80px;
}

.margin-left-30 {
    margin-left: -28px;
}

.wrapper {
    padding: 180px 0 80px 0;
}

.gray-bg {
    background-color: #EEEEE6;
}

.brown-color {
    color: #26190F;
}

.markets-title-mobile {
    display: none;
    font-size: 40px;
    font-weight: 500;
    color: #26190F;
    margin-top: 60px;
}

/* Header Styles */
.redstone-header {
    font-family: "IBM Plex Sans", sans-serif;
    color: white;
    padding: 15px 0;
    width: 100%;
    position: absolute;
    z-index: 100;
}

/* Logo Styles */
.logo {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-weight: bold;
    font-size: 24px;
    margin: 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Main Navigation */
.main-nav {
    text-align: right;
}

.main-nav a {
    color: white;
    margin-left: 40px;
    font-size: 24px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #4B8467;
}

.main-nav-brown {
    text-align: right;
}

.main-nav-brown a {
    color: #26190F;
    margin-left: 40px;
    font-size: 24px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav-brown a:hover {
    color: #4B8467;
}

.hero-section {
    width: 100%;
    height: 100vh;
    max-width: 100vw;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-title {
    font-size: 88px;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 200;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
    color: #fff;
    font-size: 88px;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: #fff;
    font-size: 40px;
    font-weight: 200;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 5px;
    z-index: 1001;
    padding: 8px;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1001;
    padding: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh; /* Slightly smaller height for mobile */
    }

    .padding-80 {
        padding: 0 20px; /* Reduced padding for mobile */
    }

    .main-nav {
        display: none; /* Hide nav on mobile, assuming burger menu takes over */
    }

    .burger-menu {
        display: block; /* Show burger menu on mobile */
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 24px);
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%; /* Начальное положение за пределами экрана */
    width: 100%;
    height: 100%;
    background-color: #4B8467;
    z-index: 1000;
    overflow-y: auto;
    will-change: transform; /* Оптимизация для анимации */
}

.mobile-nav-content {
    padding: 20px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Logo */
.mobile-logo {
    display: flex;
    align-items: center;
}

/* Close Button */
.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s;
}

.close-menu-btn:hover {
    transform: scale(1.1);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    font-family: "IBM Plex Sans", sans-serif;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 0;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, padding-left 0.3s;
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

.mobile-nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 10px;
}

/* Медиа запросы для адаптивности */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav,
    .main-nav-brown {
        display: none;
    }

    .burger-menu {
        display: block;
        top: 8px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 0;
        /*padding: 80px 0;*/
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /*.burger-menu {*/
    /*    top: 5px;*/
    /*}*/

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

    .logo {
        height: 30px;
    }

    .hero-section {
        padding: 60px 0;
        min-height: 500px;
    }
}

@media (max-width: 1280px) {
    .hide {
        display: none;
    }
    .wrapper {
        padding: 160px 0 80px 0;
    }
    .main-nav a,
    .main-nav-brown a {
        font-size: 18px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .hide {
        display: none;
    }
    .main-nav a,
    .main-nav-brown a {
        font-size: 18px;
    }
}

@media (max-width: 1000px) {
    .main-nav a,
    .main-nav-brown a {
        font-size: 14px;
    }
}

@media (max-width: 858px) {
    .main-nav a,
    .main-nav-brown a {
        font-size: 10px;
    }
}


@media (max-width: 425px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

.feature-card {
    background-color: #EEEEE6;
    border-radius: 32px;
    padding: 25px;
    text-align: left;
    height: 100%;
}

.feature-card .badge {
    background-color: #4B8467;
    color: #ffffff;
    font-weight: 400;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 32px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #26190F;
}

.feature-card p {
    font-size: 24px;
    font-weight: 300;
    color: #26190F;
    line-height: 1.5;
    margin: 0;
}

/* Отступы для секции */
.features-section {
    padding: 100px 0;
}

@media (max-width: 1280px) {
    .feature-card .badge img {
        width: 20px;
        height: 20px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 16px;
    }
}

.offer-section {
    background-color: #EEEEE6;
    padding: 50px 0;
}

.offer-section h2 {
    font-size: 70px;
    font-weight: 500;
    color: #26190F;
    margin-bottom: 10px;
    text-align: left;
}

.offer-section p.subtitle {
    font-size: 24px;
    color: #26190F;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: left;
    max-width: 100%;
}

.card-custom {
    border: none;
    border-radius: 32px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex; /* Добавляем flex для растяжки содержимого */
    flex-direction: column; /* Вертикальное расположение */
    height: 100%; /* Растягиваем карточку на всю высоту */
}

.card-custom img {
    width: 100%;
    padding: 20px;
    object-fit: cover;
}

.card-custom h3 {
    font-size: 24px;
    font-weight: 700;
    color: #26190F;
    margin: 20px 0 10px;
    padding: 0 20px;
}

.card-custom p {
    font-size: 24px;
    font-weight: 300;
    color: #26190F;
    padding: 0 20px;
    flex-grow: 1; /* Текст растягивается, чтобы карточки были одинаковой высоты */
}

.card-custom .btn-read-more {
    display: inline-block; /* Кнопка подстраивается под ширину текста */
    width: fit-content; /* Ширина строго по содержимому */
    margin: 0 20px 20px; /* Центрируем кнопку по горизонтали, оставляем отступ снизу */
    padding: 8px 20px;
    background: #4B84671F;
    border-radius: 32px;
    font-weight: 400;
    color: #4B8467;
    text-decoration: none;
    font-size: 16px;
    border: none;
}

.contact-box {
    padding: 20px;
    height: 100%;
    display: flex; /* Добавляем flex для центрирования */
    flex-direction: column; /* Вертикальное расположение */
    justify-content: center; /* Центрируем по вертикали */
    align-items: center; /* Центрируем по горизонтали */
    text-align: center; /* Текст также центрируем */
}

.contact-box h4 {
    font-size: 24px;
    font-weight: 700;
    color: #26190F;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 24px;
    font-weight: 300;
    color: #26190F;
    margin-bottom: 20px;
}

.contact-box .btn-contact {
    display: inline-block;
    padding: 10px 30px;
    background-color: #4B8467;
    font-weight: 400;
    color: #fff;
    border-radius: 32px;
    text-decoration: none;
    font-size: 24px;
}

@media (max-width: 1280px) {
    .offer-section h2 {
        font-size: 60px;
    }

    .offer-section p.subtitle {
        font-size: 20px;
    }

    .card-custom h3 {
        font-size: 20px;
    }

    .card-custom p {
        font-size: 16px;
    }

    .card-custom .btn-read-more {
        font-size: 16px;
    }

    .contact-box h4 {
        font-size: 18px;
    }

    .contact-box p {
        font-size: 16px;
    }

    .contact-box .btn-contact {
        font-size: 18px;
    }
}

@media (max-width: 425px) {
    .wrapper {
        padding: 100px 0 20px 0;
    }
    .offer-section h2 {
        font-size: 40px;
    }

    .offer-section p.subtitle {
        font-size: 18px;
    }

    .card-custom {
        margin-bottom: 20px;
    }

    .card-custom .btn-read-more {
        width: auto;
        text-align: center;
    }

    .contact-box .btn-contact {
        width: 100%;
    }

    .about-redstone-title {
        font-size: 40px;
    }
}

.about-redstone-section {
    padding: 120px 0;
    background-color: #fff;
}

.about-redstone-title {
    font-size: 70px;
    color: #26190F;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-redstone-image {
    width: 90%;
    height: auto;
    border-radius: 32px;
    object-fit: cover;
}

.about-redstone-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    color: #26190F;
    margin-bottom: 20px;
}

.discover-about-redstone-btn {
    background-color: #4B8467;
    font-family: "IBM Plex Sans", sans-serif;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 32px;
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 1280px) {
    .about-redstone-title {
        font-size: 60px;
    }

    .about-redstone-text {
        font-size: 16px;
    }

    .discover-about-redstone-btn {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about-redstone-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 425px) {
    .about-redstone-section {
        padding: 60px 0;
    }

    .about-redstone-title {
        font-size: 40px;
    }

    .about-redstone-image {
        width: 100%;
    }
}

.faq-section {
    padding: 40px 0;
}

.faq-title {
    font-size: 60px;
    font-weight: 700;
    color: #26190F;
    margin-bottom: 2rem;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-item.active {
    background-color: #4B846714;
}

.faq-answer.active {
    opacity: 1;
}

.faq-answer p {
    color: #26190FCC;
    margin: 0;
}

/* Управление видимостью версий */
.mobile-version {
    font-family: "IBM Plex Sans", sans-serif;
    display: none;
}

.desktop-version {
    font-family: "IBM Plex Sans", sans-serif;
}

/* СТИЛИ ДЕСКТОПНОЙ ВЕРСИИ */
.desktop-version .faq-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.desktop-version .faq-number {
    font-size: 48px;
    font-weight: 500;
    color: #4B8467;
    width: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.desktop-version .faq-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.desktop-version .faq-question {
    font-size: 32px;
    color: #26190F;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 48px;
}

.desktop-version .faq-answer {
    font-size: 20px;
    font-weight: 300;
    color: #26190FCC;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.desktop-version .faq-answer.active {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.desktop-version .toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 16px;
    background-color: #EDEEE5;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    cursor: pointer;
}

.desktop-version .toggle-btn:hover {
    background-color: #EDEEE5;
}

.desktop-version .toggle-btn.active {
    background-color: #4B8467;
}

.desktop-version .toggle-btn::before,
.desktop-version .toggle-btn::after {
    content: '';
    position: absolute;
    background-color: #555;
    transition: transform 0.3s, background-color 0.3s;
}

.desktop-version .toggle-btn::before {
    width: 14px;
    height: 2px;
}

.desktop-version .toggle-btn::after {
    width: 2px;
    height: 14px;
}

.desktop-version .toggle-btn.active::before,
.desktop-version .toggle-btn.active::after {
    background-color: white;
    width: 14px;
    height: 2px;
}

.desktop-version .toggle-btn.active::after {
    transform: rotate(45deg);
}

.desktop-version .toggle-btn.active::before {
    transform: rotate(-45deg);
}

/* СТИЛИ МОБИЛЬНОЙ ВЕРСИИ */
.mobile-version .faq-header {
    padding: 0.75rem;
    cursor: pointer;
}

.mobile-version .faq-number {
    font-size: 24px;
    font-weight: 500;
    color: #4B8467;
    width: 100%;
    display: block;
    margin-bottom: 0.5rem;
}

.mobile-version .faq-content {
    width: 100%;
}

.mobile-version .faq-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.mobile-version .faq-question {
    font-size: 18px;
    line-height: 1.2;
    color: #26190F;
    font-weight: 600;
    margin: 0;
    width: calc(100% - 30px);
}

.mobile-version .faq-answer {
    font-size: 14px;
    font-weight: 300;
    color: #26190FCC;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    padding: 0;
    width: 100%;
}

.mobile-version .faq-answer.active {
    padding: 0.5rem 0;
    height: auto;
    overflow: visible;
    opacity: 1;
}

.mobile-version .faq-answer.active {
    padding: 0.5rem 0;
    height: auto;
}

.mobile-version .toggle-btn {
    width: 24px;
    height: 24px;
    border-radius: 10px;
    background-color: #EDEEE5;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.mobile-version .toggle-btn.active {
    background-color: #4B8467;
}

.mobile-version .toggle-btn::before,
.mobile-version .toggle-btn::after {
    content: '';
    position: absolute;
    background-color: #555;
    transition: transform 0.3s, background-color 0.3s;
}

.mobile-version .toggle-btn::before {
    width: 8px;
    height: 1.5px;
}

.mobile-version .toggle-btn::after {
    width: 1.5px;
    height: 8px;
}

.mobile-version .toggle-btn.active::before,
.mobile-version .toggle-btn.active::after {
    background-color: white;
    width: 8px;
    height: 1.5px;
}

.mobile-version .toggle-btn.active::after {
    transform: rotate(45deg);
}

.mobile-version .toggle-btn.active::before {
    transform: rotate(-45deg);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1280px) {
    .faq-title {
        font-size: 60px;
    }

    .desktop-version .faq-question {
        font-size: 24px;
    }

    .desktop-version .faq-answer p {
        font-size: 16px;
    }

    .desktop-version .faq-number {
        font-size: 32px;
    }

    .desktop-version .toggle-btn {
        width: 32px;
        height: 32px;
        border-radius: 12px;
    }
}

@media (max-width: 425px) {
    .faq-section {
        padding: 20px 0;
    }

    .faq-title {
        font-size: 40px;
        margin-bottom: 1rem;
    }

    /* Переключение видимости версий */
    .desktop-version {
        display: none;
    }

    .mobile-version {
        display: block;
    }
}


.markets-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 1012; /* Соотношение оригинальной картинки */
    max-height: 1012px;
}

.markets-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.markets-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Отзывчивый заголовок с помощью calc */
.markets-title {
    margin-top: 70px;
    font-size: calc(35px + 1.5vw); /* Адаптивный размер шрифта */
    max-font-size: 70px;
    font-weight: 500;
    color: #26190F;
    text-align: left;
}

@media (max-width: 1280px) {

}

@media (max-width: 425px) {
    .markets-section {
        height: 418px;
        aspect-ratio: auto; /* Отключаем соотношение для фиксированной высоты */
    }
    .markets-title {
       margin-top: 20px;
    }
    .markets-title-mobile {
        display: block;
    }
}

.footer-section {
    font-family: "IBM Plex Sans", sans-serif;
    background-color: #4B8467;
    color: #fff;
    padding: 50px 0;
    overflow-x: hidden;
}

/* Стиль для логотипа */
.footer-logo {
    margin: 0;
    padding: 0;
}

/* Стиль для копирайта */
.footer-copyright {
    font-size: 12px;
    font-weight: 400;
    color: #a5c1b3;
    margin-top: 20px;
}

/* Стиль для заголовков колонок */
.footer-heading {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Стиль для ссылок */
.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-link:hover {
    color: #ccc;
}

/* Стиль для текста в колонках */
.footer-text {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 300;
}

@media (max-width: 425px) {
    /* Переопределяем структуру футера для мобильных */
    .footer-section .row {
        display: flex;
        flex-direction: column;
    }

    /* Скрываем оригинальный копирайт */
    .col-md-2:first-child .footer-copyright {
        display: none;
    }

    /* Добавляем новый копирайт в конце */
    .footer-section .container-fluid {
        position: relative;
        padding-bottom: 60px; /* Пространство для копирайта */
    }

    /* Создаем новый копирайт в конце */
    .footer-section .container-fluid::after {
        content: "© 2025 — Redstone\A All rights reserved.";
        white-space: pre;
        position: absolute;
        bottom: 20px;
        left: 15px;
        font-size: 12px;
        font-weight: 400;
        color: #a5c1b3;
        margin-top: 30px;
        display: block;
        width: 100%;
    }

    /* Увеличиваем отступы между колонками для лучшей читаемости */
    .footer-section .col-md-2 {
        margin-bottom: 30px;
    }
}

/* Стиль для кнопки подписки */
.subscribe-btn {
    background-color: #fff;
    color: #26190F;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.subscribe-btn:hover {
    background-color: #e0e0e0;
}

@media (max-width: 1280px) {
    .subscribe-btn {
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .padding-80 {
        padding: 0 25px;
    }
}

@media (max-width: 425px) {
    .padding-80 {
        padding: 0 15px;
    }
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-container {
    font-family: "IBM Plex Sans", sans-serif;
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: scale(0.8);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #333;
}

.popup-title {
    color: #26190F;
    margin-bottom: 20px;
    text-align: left;
    font-size: 24px;
}

.form-group {
    font-family: "IBM Plex Sans", sans-serif;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.form-control {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.submit-btn {
    background-color: #4B8467;
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.submit-btn:disabled {
    background-color: #7e9788;
    cursor: not-allowed;
}

.success-message {
    display: none;
    color: #4CAF50;
    text-align: center;
    margin-top: 10px;
    opacity: 0;
}

/* Индикатор надежности пароля */
.password-strength {
    height: 5px;
    background-color: #eee;
    margin-top: 8px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: none;
}

.password-strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s, background-color 0.3s;
}

/* Стили для reCAPTCHA */
.recaptcha-container {
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
}

/* Стили для Honeypot */
.screen-reader-only {
    position: absolute;
    height: 1px;
    width: 1px;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    white-space: nowrap;
}

.privacy h1 {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.privacy h2 {
    font-size: 56px;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy h3 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy .effective-date {
    font-size: 24px;
    margin-bottom: 1rem;
}

.privacy p {
    font-size: 24px;
    margin-bottom: 1rem;
}

.privacy ul {
    font-size: 24px;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.privacy a {
    color: #4B8467;
}

.privacy .acknowledgement {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 425px) {
    .privacy h1 {
        font-size: 40px;
    }
    .privacy .effective-date {
        font-size: 18px;
    }
    .privacy p {
        font-size: 18px;
    }
    .privacy h2 {
        font-size: 32px;
    }
    .privacy h3 {
        font-size: 24px;
    }
    .privacy ul {
        font-size: 20px;
    }
}

/* По умолчанию показываем версию для десктопа */
.mobile-map {
    display: none;
}

/* Для экранов 425px и меньше */
@media screen and (max-width: 425px) {
    .desktop-map {
        display: none;
    }
    .mobile-map {
        display: block;
    }
    .markets-map-img {
        object-position: unset;
    }
}

@media (max-width: 768px) {
.scroll-mobile-menu {
    position: fixed !important;
    background: #333;
}
}