/* Base Styles */
:root {
    --primary-color: #e71d36;
    --secondary-color: #ffc107;
    --accent-color: #7b2cbf;
    --dark-color: #25283d;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --gradient-1: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-2: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f0f0f0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 10px auto 0;
    border-radius: 2px;
}

section {
    padding: 5rem 2rem;
}

/* Header Styles */
.hgytw {
    background: var(--dark-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.mnbgt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    flex: 1;
}

.mnbgt h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mnbgt p {
    color: var(--light-color);
    font-style: italic;
}

.nvret {
    display: flex;
    justify-content: center;
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--light-color);
    background: transparent;
    border: none;
    padding: 0.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.nvret ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nvret li {
    margin: 0 1rem;
}

.nvret a {
    color: var(--light-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nvret a:hover, .nvret a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Button Styles */
.qwed2 {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(123, 44, 191, 0.3);
    transition: all 0.3s ease;
}

.qwed2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(123, 44, 191, 0.4);
    color: white;
}

.qwed2.secondary {
    background: var(--gradient-2);
}

/* Home Page Styles */
.trw45 {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.trw45::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.bndf3 {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bndf3 h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bndf3 p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

/* Offers Section */
.zcxt4 {
    background-color: var(--light-color);
    text-align: center;
}

.plkj5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.uyt67 {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.uyt67:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.uyt67 h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.vbnh4 {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 1rem;
}

/* Features Section */
.gtre3 {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.gtre3 h2 {
    color: var(--light-color);
}

.dfr43 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.qasz1 {
    flex: 1 1 250px;
    max-width: 300px;
    perspective: 1000px;
}

.poit7 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poit7:hover {
    transform: translateZ(20px);
    background: rgba(255, 255, 255, 0.15);
}

.poit7 h3 {
    color: var(--secondary-color);
}

/* Next Departures */
.rtyu8 {
    background: var(--light-color);
}

.xcvb2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.tyui5 {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    width: 300px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.tyui5:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.tyui5:nth-child(3) {
    border-top-color: var(--accent-color);
}

.tyui5:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

/* Cruises Page Styles */
.klpo9 {
    text-align: center;
    background-color: var(--light-color);
}

.jklo5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.qawe3 {
    width: 350px;
    height: 500px;
    perspective: 1000px;
    margin-bottom: 2rem;
}

.ftre4, .poir9 {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.ftre4 {
    background: white;
    transform: rotateY(0deg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.poir9 {
    background: var(--dark-color);
    transform: rotateY(180deg);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qawe3:hover .ftre4 {
    transform: rotateY(180deg);
}

.qawe3:hover .poir9 {
    transform: rotateY(0deg);
}

.ftre4 img {
    height: 200px;
    object-fit: cover;
}

.ftre4 h3 {
    margin-top: 1rem;
    color: var(--primary-color);
}

.nbvf2 {
    color: var(--accent-color);
    font-weight: bold;
}

.ujki8 {
    margin-top: 1rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.bvcf7 {
    text-align: left;
    margin: 1rem 0;
}

.bvcf7 li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.bvcf7 li:before {
    content: '🚢';
    position: absolute;
    left: 0;
    top: 0;
}

.lkju3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tyui1 {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-radius: 4px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Player Levels */
.hjkl8 {
    background: var(--dark-color);
    color: var(--light-color);
}

.hjkl8 h2 {
    color: var(--light-color);
}

.vbdf6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.qwer1 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    width: 270px;
    text-align: center;
    transition: all 0.3s ease;
}

.qwer1:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.qwer1 h3 {
    color: var(--secondary-color);
}

.oiuy2 {
    background: rgba(0, 0, 0, 0.3);
    height: 10px;
    border-radius: 5px;
    margin: 1rem 0;
    overflow: hidden;
}

.nmbh7 {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
}

.qwer1 ul {
    text-align: left;
    margin-top: 1.5rem;
}

.qwer1 li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.qwer1 li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Experiences Page Styles */
.pytr2 {
    text-align: center;
    background-color: var(--light-color);
}

.mhyt6 {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.poky8 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.trdw1 {
    display: flex;
    transition: transform 0.5s ease;
}

.yhns3 {
    min-width: 100%;
    padding: 2rem;
}

.qazx3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.qazx3:hover {
    background: var(--primary-color);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.xswa2 {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.hdrs9 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hdrs9 img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-color);
}

.nbgt5 h3 {
    margin-bottom: 0.2rem;
}

.ytrd4 {
    color: var(--secondary-color);
}

.polk3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.wedq2 {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Video Section */
.vbnm4 {
    background: var(--dark-color);
    color: var(--light-color);
}

.vbnm4 h2 {
    color: var(--light-color);
}

.zxcf5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.iuty7 {
    width: 320px;
    text-align: center;
}

.cvbn1 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
}

.cvbn1 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.cvbn1:hover img {
    transform: scale(1.05);
}

.plok8 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.cvbn1:hover .plok8 {
    background: var(--primary-color);
}

.iuty7 h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Gallery */
.hjkl5 {
    background: var(--light-color);
}

.tyur7 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.mnbv4 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.mnbv4:hover {
    transform: scale(1.03);
    box-shadow: var(--card-shadow);
}

.mnbv4 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Footer Styles */
.asdq1 {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 2rem 1rem;
}

.zxcv5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.poiu9 {
    flex: 1 1 300px;
    order: 2;
}

.poiu9 h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lkjh6 {
    flex: 1 1 200px;
    order: 3;
}

.lkjh6 h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.lkjh6 ul li {
    margin-bottom: 0.5rem;
}

.lkjh6 ul li a {
    color: var(--light-color);
    transition: all 0.3s ease;
}

.lkjh6 ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.mnbv7 {
    flex: 1 1 250px;
    order: 1;
}

.mnbv7 h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mnbv7 p {
    margin-bottom: 0.5rem;
}

.qwer8 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social {
    display: inline-block;
    color: var(--light-color);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.asdf4 {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .zxcv5 {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .poiu9, .lkjh6, .mnbv7 {
        text-align: center;
    }
    
    .qwer8 {
        justify-content: center;
    }
    
    /* Адаптивная навигация для мобильных устройств */
    .hgytw {
        position: relative;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .mnbgt {
        flex: 1;
        padding-right: 50px; /* Освобождаем место для кнопки меню */
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 2rem;
        top: 1.5rem;
        z-index: 1010;
        margin: 0;
        font-size: 2rem;
        color: var(--secondary-color);
    }
    
    .nvret {
        position: static;
    }
    
    .nvret ul {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
        background: var(--dark-color);
        border-radius: 0 0 8px 8px;
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: var(--shadow);
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
    }
    
    .nvret ul.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .nvret li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nvret a {
        display: block;
        padding: 0.8rem;
        width: 100%;
        border-radius: 4px;
    }
    
    .nvret a.active {
        background-color: var(--primary-color);
    }

    .mnbgt h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    /* Адаптивность для временной линии */
    .fdsa9::before {
        left: 30px;
    }
    
    .iuyt6 {
        width: calc(100% - 80px);
        float: right;
        margin-left: 80px;
    }
    
    .iuyt6.left::after, .iuyt6.right::after {
        left: -30px;
    }
    
    .iuyt6.left, .iuyt6.right {
        float: right;
    }
}

/* Медиа-запросы для сверхмалых экранов */
@media (max-width: 480px) {
    .hgytw {
        padding: 0.8rem 1rem;
    }
    
    .mnbgt h1 {
        font-size: 1.6rem;
    }
    
    .mnbgt p {
        font-size: 0.9rem;
    }
    
    .nvret a {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .menu-toggle {
        margin-bottom: 0.5rem;
    }
}

/* Стили для формы отзывов */
.jfka8 {
    background-color: var(--light-color);
    text-align: center;
    padding: 5rem 2rem;
}

.vcxz9 {
    max-width: 800px;
    margin: 3rem auto 0;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.vcxz9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
}

.qwsa6 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.loiu7 {
    text-align: left;
}

.loiu7 label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.aswq2 {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.aswq2:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2);
    outline: none;
}

.jhgf3 {
    display: flex;
    gap: 0.5rem;
}

.polm4 {
    font-size: 2rem;
    cursor: pointer;
    color: #ddd;
    transition: all 0.3s ease;
}

.polm4:hover, .polm4.active {
    color: var(--secondary-color);
}

.ytre3 {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.8rem;
    width: 100%;
}

@media (max-width: 768px) {
    .vcxz9 {
        padding: 1.5rem;
    }
}

/* Стили для страницы "История" */
.gfds4 {
    background: var(--light-color);
    padding: 6rem 2rem;
    text-align: center;
}

.pouy6 {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.nvbr4 {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.nvbr4 h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.trew3 {
    margin: 2rem auto;
    width: 120px;
    height: 120px;
    background: rgba(231, 29, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.trew3 img {
    max-width: 100%;
}

/* Стили для временной линии */
.hjky7 {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 2rem;
    position: relative;
}

.hjky7 h2 {
    color: var(--light-color);
}

.fdsa9 {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.fdsa9::before {
    content: '';
    position: absolute;
    width: 6px;
    background: var(--gradient-1);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.qwer5 {
    padding: 2rem 0;
    position: relative;
}

.iuyt6 {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    width: calc(50% - 50px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.iuyt6:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.iuyt6 h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.iuyt6.left {
    float: left;
}

.iuyt6.right {
    float: right;
}

.iuyt6.left::after, .iuyt6.right::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 6px;
    background: var(--gradient-1);
}

.iuyt6.left::after {
    right: -30px;
}

.iuyt6.right::after {
    left: -30px;
}

.qwer5::after {
    content: '';
    display: block;
    clear: both;
    height: 0;
}

.olki7 {
    margin-top: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    border-radius: 5px;
    text-align: center;
}

.xcvb1 {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Стили для команды */
.jklo7 {
    background: var(--light-color);
    padding: 5rem 2rem;
    text-align: center;
}

.gfre5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.plok4 {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.plok4:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.awse3 {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.awse3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
}

.mnbg6 {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bnhj7 {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.trew2 {
    margin-top: 1.5rem;
}

.yuio8 {
    margin-bottom: 0.8rem;
}

.yuio8 span {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-align: left;
}

.werq9 {
    background: rgba(0, 0, 0, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.fgtr4 {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px;
}

/* Стили для будущих миссий */
.vbnm2 {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 2rem;
    text-align: center;
}

.vbnm2 h2 {
    color: var(--light-color);
}

.hjkl3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.qwsa2 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    transition: all 0.3s ease;
}

.qwsa2:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.qwsa2 h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.rtyu1 {
    margin-top: 2rem;
}

.mnbv5 {
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.erty4 {
    background: rgba(0, 0, 0, 0.3);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.asdf5 {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 5px;
}

.xcvb6 {
    text-align: right;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Стили для финального призыва к действию */
.jklo9 {
    background: var(--light-color);
    padding: 5rem 2rem;
    text-align: center;
}

.lkiy5 {
    max-width: 800px;
    margin: 2rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.lkiy5 p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.asdf3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

/* Стили для страницы контактов */
.erty2 {
    background: var(--light-color);
    padding: 5rem 2rem;
    text-align: center;
}

.bnvf4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.zxcv8 {
    flex: 1 1 450px;
    max-width: 550px;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
}

.zxcv8 h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.poiu5 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.asdf6 {
    position: relative;
}

.asdf6 label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.vbnm9 {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.vbnm9:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2);
    outline: none;
}

.gfds7 {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gfds7 input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.mnhj8 {
    font-size: 0.9rem;
}

.hgfd3 {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
}

.hgfd3 h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.vcxz1 {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.nbvc2 {
    font-size: 1.8rem;
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.vcxz1 h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.vcxz1 p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.plko4 {
    margin-top: 2.5rem;
}

.plko4 h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.iuyt4 {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.qazx5 {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.qazx5:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Стили для FAQ */
.bhgt6 {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 2rem;
    text-align: center;
}

.bhgt6 h2 {
    color: var(--light-color);
}

.jkli9 {
    max-width: 800px;
    margin: 3rem auto 0;
}

.polk7 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.polk7.active {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

.yuio9 {
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yuio9:hover {
    background: rgba(255, 255, 255, 0.05);
}

.polk7.active .yuio9 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wsxc4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.polk7.active .wsxc4 {
    transform: rotate(45deg);
}

/* Стили для карты */
.fghj4 {
    background: var(--light-color);
    padding: 5rem 2rem;
    text-align: center;
}

.poli6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.dfgh7 {
    flex: 1 1 450px;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.dfgh7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kjhy8 {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: left;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.kjhy8 h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.kjhy8 ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.kjhy8 li {
    margin-bottom: 0.8rem;
}

/* Стили для newsletter */
.qwdf3 {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 2rem;
    text-align: center;
}

.qwdf3 h2 {
    color: var(--light-color);
}

.dfre4 {
    max-width: 600px;
    margin: 2rem auto 0;
}

.dfre4 p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.nbhy6 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.yuio3 {
    flex: 1 1 300px;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}
.card-back h3 {
color: #fff};
/* Медиа-запросы для страницы контактов */
@media (max-width: 768px) {
    .bnvf4 {
        gap: 2rem;
    }
    
    .zxcv8, .hgfd3 {
        padding: 2rem;
    }
    
    .nbhy6 {
        flex-direction: column;
    }
    
    .yuio3 {
        border-radius: 5px;
    }
    
    .qwed2 {
        width: 100%;
    }
}

.yuio9 h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0;
}

.rtyu5 {
    padding: 0 1.2rem 1.2rem;
}

.rtyu5 p {
    margin: 0;
    line-height: 1.6;
}
