@font-face {
    font-family: 'Britanica';
    src: url('/Britanica-Regular Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('/HelveticaNeueMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-blue: #01AFEF;
    --bg-light: #F5FEFF;
    --bg-lighter: #E8F9FF;
    --title-font: 'Britanica', Arial, sans-serif;
    --body-font: 'Helvetica', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font);
}

/* Navigation */
nav {
    background-color: var(--primary-blue);
    padding: 1rem 0;
}

nav > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: var(--title-font);
    display: flex;
    align-items: center;
}

.logo img {
    padding:5px;
}

.hero-image img, .tokenomics-image img {
    max-width: 600px;
}

/* Desktop Navigation */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: var(--title-font);
    font-weight: 700;
}

/* Стили для новых социальных иконок */
.socials a, .mobile-socials a, .footer-socials a {
    color: white; /* Это свойство уже не влияет на img, но оставлено для Font Awesome, если вы передумаете */
    font-size: 24px; /* Это свойство уже не влияет на img, но оставлено для Font Awesome, если вы передумаете */
    padding: 5px;
    display: inline-flex; /* Для центрирования img внутри ссылки */
    align-items: center; /* Для центрирования img внутри ссылки */
    justify-content: center; /* Для центрирования img внутри ссылки */
}

/* Новый стиль для ваших иконок-изображений */
.social-icon {
    width: 48px; /* Установите желаемый размер */
    height: 48px; /* Должен быть такой же, как ширина для квадратных иконок */
    vertical-align: middle; /* Выравнивание по центру */
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-blue);
    padding: 80px 24px 24px;
    transition: 0.3s ease-in-out;
    z-index: 99;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 1.2rem;
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .nav-wrapper {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links , .socials{
        display: none;
    }

    /* Mobile menu toggle animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Hero Section (Original) */
.hero {
    background-color: var(--bg-light);
    /* padding: 6rem 0; */ /* Удален или закомментирован */
}

.hero > .container {
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 600px;
    margin-left: 100px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: var(--title-font);
    font-weight: bold;
    line-height: 1;
}

.hero p {
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
}

section h3 {
    text-transform: uppercase;
    color:gray;
    font-size: 14px;
    font-weight: 100;
    padding:15px 0px;
}

/* Tokenomics Section */
.tokenomics {
    background-color: var(--bg-lighter);
    padding: 4rem 0;
}

.tokenomics > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tokenomics-content {
    max-width: 500px;
}

.tokenomics h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.distribution {
    display: flex;
    flex-direction: column;
    padding:20px 0px;
}

.distribution h2 {
    font-size: 26px;
}

.distribution-item h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--title-font);
    font-weight: bold;
}

/* Add container class */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Updated How to Buy Section */
.how-to-buy {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.how-to-buy-header {
    text-align: center;
    margin-bottom: 2rem; /* Отступ под заголовком */
}

.how-to-buy h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.how-to-buy-layout {
    display: flex;
    align-items: center; /* Измените это с flex-start на center */
    gap: 2rem;
}

.how-to-buy-image {
    flex: 1; /* Каждое изображение занимает равное пространство */
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-to-buy-image img {
    max-width: 100%; /* Изображения должны быть адаптивными */
    height: auto;

}

.how-to-buy-content {
    flex: 2; /* Контентная часть занимает больше места */
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем контент внутри этой колонки */
    text-align: center;
}

/* ==== НАЧАЛО: Обновленные стили для .steps ==== */
.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на десктопе */
    gap: 2.5rem; /* Увеличенный отступ между элементами сетки */
    margin-top: 0;
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-top: 0px; /* Убираем дополнительный отступ, так как нет линии */
}

.steps::before {
    /* Эти стили отвечали за синюю полоску. Мы их удаляем или комментируем. */
    /* content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    z-index: 0;
    display: block;
    transform: translateY(-50%);
    pointer-events: none; */
    display: none; /* Гарантируем, что псевдоэлемент не отображается */
}

.step-item {
    text-align: center;
    padding: 2.5rem 1.5rem; /* Увеличен padding */
    background: white; /* Фон для каждого шага */
    border-radius: 20px; /* Более округлые углы */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Более выраженная тень */
    position: relative;
    z-index: 1; /* Чтобы шаги были над линией */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-8px); /* Легкое поднятие при наведении */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* Усиленная тень при наведении */
}

.step-number {
    width: 50px; /* Больше кружок */
    height: 50px; /* Больше кружок */
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem; /* Больше отступ снизу */
    font-family: var(--title-font);
    font-weight: bold;
    font-size: 1.8rem; /* Больше цифра */
    border: 5px solid var(--bg-light); /* Толще обводка */
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1); /* Легкое увеличение цифры */
    background-color: darken(var(--primary-blue), 10%); /* Чуть темнее при наведении (если SCSS/SASS, иначе замените на конкретный цвет) */
    /* Если не используете SASS/SCSS, можете использовать: background-color: #008ECF; */
}

.step-item h4 {
    font-family: var(--title-font);
    margin: 1rem 0;
    color: #333; /* Более темный цвет для заголовка шага */
    font-size: 1.5rem; /* Больше размер заголовка */
}

.step-item p {
    font-size: 1.1rem; /* Больше размер текста */
    line-height: 1.6; /* Улучшенная читаемость */
    color: #555; /* Более темный цвет текста */
}
/* ==== КОНЕЦ: Обновленные стили для .steps ==== */

/* Update responsive design for How to Buy */
@media (max-width: 968px) {
    .how-to-buy-layout {
        flex-direction: column; /* На меньших экранах колонки располагаются вертикально */
        align-items: center;
        text-align: center;
    }

    .how-to-buy-image {
        margin-bottom: 1.5rem; /* Отступ между изображениями и контентом */
    }

    .how-to-buy-image.right-image {
        order: 3; /* Смещение правого изображения вниз на мобильных устройствах */
    }

    .how-to-buy-content {
        order: 2; /* Размещаем контент по центру */
    }

    .steps {
        grid-template-columns: repeat(2, 1fr); /* Остается 2 колонки */
        max-width: 100%; /* Занимаем всю ширину */
        padding-top: 0; /* Убираем верхний отступ для линии на мобильных */
        gap: 1.5rem; /* Уменьшаем отступ между элементами на мобильных */
    }
    .steps::before {
        display: none; /* Скрываем линию на мобильных устройствах (уже скрыта выше, но для надежности) */
    }

    .step-item {
        background: rgba(1, 175, 239, 0.05); /* Легкий фон для мобильных */
        border-radius: 15px;
        padding: 2rem;
        box-shadow: none; /* Убираем тень на мобильных, если она не нужна */
    }

    .step-number {
        border: 4px solid var(--primary-blue); /* Изменяем обводку на синюю на мобильных */
        background: white; /* Белый фон для цифры на мобильных */
        color: var(--primary-blue); /* Синяя цифра на мобильных */
        font-size: 1.5rem; /* Уменьшаем размер цифры на мобильных */
        width: 45px;
        height: 45px;
    }

    .step-item:hover .step-number {
        transform: scale(1.1); /* Остается легкое увеличение */
        background-color: var(--primary-blue); /* Возвращаем синий фон при наведении */
        color: white; /* Белая цифра при наведении */
    }

    .step-item h4 {
        font-size: 1.3rem; /* Уменьшаем размер заголовка на мобильных */
    }

    .step-item p {
        font-size: 1rem; /* Уменьшаем размер текста на мобильных */
    }
}

@media (max-width: 768px) {
    .how-to-buy h2 {
        font-size: 3rem !important;
    }
    .how-to-buy p {
        font-size: 1.4rem !important;
    }
    .step-item h4 {
        font-size: 1.8rem !important; /* Откатываемся к большим размерам для планшетов */
    }
    .step-item p {
        font-size: 1.3rem !important; /* Откатываемся к большим размерам для планшетов */
    }
}

@media (max-width: 480px) {
    .how-to-buy h2 {
        font-size: 2.2rem !important;
    }
    .steps {
        grid-template-columns: 1fr; /* Одна колонка на самых маленьких экранах */
    }

    .step-item h4 {
        font-size: 1.5rem !important; /* Уменьшаем размер заголовка на самых маленьких экранах */
    }

    .step-item p {
        font-size: 1.1rem !important; /* Уменьшаем размер текста на самых маленьких экранах */
    }
}


/* Roadmap Section */
.roadmap {
    background-color: var(--bg-lighter);
    padding: 4rem 0;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 4rem;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.roadmap-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-10px);
}

.phase-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    font-family: var(--title-font);
}

.roadmap-card h4 {
    font-family: var(--title-font);
    color: var(--primary-blue);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.roadmap-card ul {
    list-style: none;
    padding: 0;
}

.roadmap-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* Footer Styles */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h5 {
    font-family: var(--title-font);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    width: max-content;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design Updates */
@media (max-width: 968px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Add smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust this value to match your header height */
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Avatar Customization Section */
.avatar-customization {
    background-color: var(--bg-light);
    padding: 6rem 0;
    overflow: hidden;
}

.avatar-customization > .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.avatar-content {
    flex: 1;
}

.avatar-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--title-font);
}

.avatar-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.perk-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.1);
    transition: transform 0.3s ease;
}

.perk-item:hover {
    transform: translateY(-5px);
}

.perk-item h4 {
    color: var(--primary-blue);
    font-family: var(--title-font);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.perk-item p {
    color: #666;
    line-height: 1.5;
}

.avatar-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.avatar-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(1, 175, 239, 0.2);
}

/* Image responsiveness */
.hero-image img, .tokenomics-image img, .avatar-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    /* .hero h1 { font-size: 3.5rem; } */ /* Закомментировано или удалено для новой секции about */
}

@media (max-width: 968px) {
    /* Hero Section */
    .hero > .container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        margin-left: 0;
    }

    /* .hero h1 { font-size: 3rem; } */ /* Закомментировано или удалено для новой секции about */

    .hero p {
        margin: 0 auto 2rem;
    }

    /* Tokenomics Section */
    .tokenomics > .container {
        flex-direction: column-reverse;
        gap: 3rem;
        text-align: center;
    }

    .tokenomics-content {
        max-width: 100%;
    }

    .distribution {
        max-width: 600px;
        margin: 2rem auto 0;
    }

    /* Images */
    .hero-image, .tokenomics-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Typography */
    /* .hero h1 { font-size: 3.5rem !important; } */ /* Закомментировано или удалено для новой секции about */

    h2 {
        font-size: 3rem !important;
    }

    /* .hero p, */ .tokenomics p, .how-to-buy p, .avatar-content > p { /* hero p закомментировано/удалено */
        font-size: 1.4rem !important;
    }

    /* Roadmap Typography (откатываемся к большим размерам для планшетов) */
    .roadmap-card h4 {
        font-size: 2rem !important;
    }

    .roadmap-card li {
        font-size: 1.3rem !important;
    }

    .perk-item h4 {
        font-size: 1.8rem !important;
    }

    .perk-item p {
        font-size: 1.3rem !important;
    }

    /* Navigation */
    .mobile-nav-links a {
        font-size: 2rem !important;
    }

    /* Sections padding */
    /* .hero, */ /* Закомментировано */
    .tokenomics, .how-to-buy, .roadmap, .avatar-customization {
        padding: 3rem 0;
    }

    /* Images */
    .hero-image, .tokenomics-image {
        max-width: 400px;
    }

    /* Distribution Grid */
    .distribution {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .distribution-item h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Typography */
    /* .hero h1 { font-size: 3.2rem !important; } */ /* Закомментировано или удалено для новой секции about */

    h2 {
        font-size: 2.8rem !important;
    }

    .distribution h2 {
        font-size: 2.2rem !important;
    }

    /* Images */
    .hero-image, .tokenomics-image {
        max-width: 300px;
    }

    /* Distribution Grid */
    .distribution {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .btn {
        width: 100%;
        text-align: center;
        font-size: 1.4rem !important;
        padding: 1rem 2rem !important;
    }
}

/* Fix for larger screens */
@media (min-width: 1400px) {
    .hero-image img, .tokenomics-image img {
        max-width: 600px;
    }
}

/* Loader Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    color: white;
    font-family: var(--title-font);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.loader-bar {
    width: 270px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.3s ease-out;
}

/* Interactive Links */
.nav-links a, .footer-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after, .footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .footer-links a:hover::after {
    width: 100%;
}

/* Social Icons Animation */
.socials a, .mobile-socials a, .footer-socials a {
    transition: transform 0.3s ease, opacity 0.3s ease; /* Изменено color на opacity, так как это img */
    display: inline-block;
}

.socials a:hover, .mobile-socials a:hover, .footer-socials a:hover {
    transform: translateY(-3px);
    opacity: 0.8; /* Изменено color на opacity */
}

/* Button Hover Effect */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.3);
}

/* Coming Soon Flair */
.coming-soon-flair {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 12px;
    font-family: var(--body-font);
    font-weight: 500;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .coming-soon-flair {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}

/* Logo Styles */
.logo img {
    height: 40px;
    width: auto;
}

/* Loader Logo */
.loader-logo img {
    height: 60px;
    width: auto;

}

/* Footer Logo */
.footer-brand .logo img {
    height: 40px;
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 32px;
    }

    .loader-logo img {
        height: 50px;
    }
}

/* Новые стили для секции About */
.about-section-new > .container {
    display: flex;
    flex-direction: column; /* Элементы располагаются по вертикали */
    align-items: center;   /* Выравнивание по центру */
    text-align: center;    /* Текст по центру */
    padding: 2rem 20px;    /* Уменьшен отступ сверху/снизу для уменьшения высоты */
    background-color: var(--bg-light); /* Фон, как у оригинальной секции Hero */
}

.about-content-new {
    width: 100%;
    max-width: 800px; /* Ограничение ширины для содержимого */
    margin-bottom: 1.5rem; /* Уменьшен отступ снизу от контента */
}

.about-section-new h1 {
    font-size: 4rem;
    font-family: var(--title-font);
    font-weight: bold;
    color: #333; /* Более темный цвет для заголовка */
    margin-bottom: 1.5rem; /* Уменьшен отступ под заголовком */
}

.hero-image-new {
    margin-bottom: 1.5rem; /* Уменьшен отступ под изображением */
    position: relative; /* Для Z-индекса */
    z-index: 0; /* Ниже, чем блок с текстом */
}

.hero-image-new img {
    max-width: 50%; /* Максимальная ширина изображения */
    height: auto;
    display: block; /* Убираем лишнее пространство под картинкой */
    margin: 0 auto; /* Центрируем изображение */
}

/* Анимация покачивания */
.floating-image {
    animation: float 1s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } /* Больше покачивание */
    100% { transform: translateY(0px); }
}

.copy-address-box {
    background-color: white;
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin: -50px auto 1.5rem auto; /* Отрицательный margin-top для перекрытия картинки */
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(1, 175, 239, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.copy-address-box:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.copy-address-box span {
    font-family: var(--body-font);
    font-weight: bold;
    font-size: 1rem;
    color: var(--primary-blue);
    word-break: break-all; /* Перенос длинных слов */
    transition: color 0.3s ease;
    text-align: center; /* Центрируем текст внутри span */
    width: 100%; /* Занимаем всю доступную ширину */
}

.copy-address-box:hover span {
    color: white;
}

/* Ограничиваем оригинальный .hero-content и .hero-image, чтобы они не влияли на новую секцию */
.hero-content, .hero-image {
    display: none; /* Скрываем оригинальные блоки hero-content и hero-image */
}

/* Адаптивность для новой секции About */
@media (max-width: 768px) {
    .about-section-new h1 {
        font-size: 3rem;
        margin-bottom: 1rem; /* Уменьшен отступ */
    }

    .hero-image-new img {
        max-width: 90%;
    }

    .copy-address-box {
        padding: 0.8rem; /* Уменьшен padding */
        gap: 0; /* Не нужен */
    }

    .copy-address-box span {
        font-size: 0.85rem; /* Уменьшен размер шрифта */
        text-align: center;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .about-section-new h1 {
        font-size: 2.2rem; /* Еще больше уменьшен */
    }

    .hero-image-new img {
        max-width: 100%;
    }

    .copy-address-box {
        max-width: 95%;
        padding: 0.7rem; /* Еще уменьшен padding */
    }

    .copy-address-box span {
        font-size: 0.8rem; /* Еще уменьшен размер шрифта */
    }
}