@import url('https://fonts.googleapis.com/css2?family=Tahoma:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

*:focus {
    outline: none;
}

*:active {
    outline: none;
}

button:focus,
button:active,
a:focus,
a:active,
input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    background: #000000;
    color: white;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all 0.4s ease;
    min-height: 80px;
}

.header.menu-open {
    min-height: 550px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.nav-left {
    flex: 0 0 auto;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-right {
    flex: 0 0 auto;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-weight: 400;
    font-style: italic;
    padding: 0.5rem 1rem;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    transform: scale(1.1);
}



/* Main Hero Section */
.main {
    position: relative;
    margin: 0;
    padding: 0;
}

.hero {
    display: flex;
    min-height: calc(100vh + 80px);
    background: url('back.jpg') center/cover no-repeat fixed;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    z-index: 1;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4rem;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.hero-text {
    text-align: left;
}

.hero-logo {
    text-align: left;
}

.school-logo {
    width: 800px;
    height: auto;
    max-width: 90vw;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
}

.hero-subtitle {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hero-title-main {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 8rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-title-sub {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: normal;
    font-style: italic;
    line-height: 1;
    margin: 0;
    color: white;
    text-transform: lowercase;
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-center {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .nav-left {
        z-index: 1002;
    }
    
    .nav-right {
        z-index: 1002;
    }
    
    .hero {
        flex-direction: column;
        background-position: 80% center;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-logo {
        text-align: center;
    }
    
    .school-logo {
        width: 600px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }
    
    .hero-title-main {
        font-size: 4rem;
    }
    
    .hero-title-sub {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: 80% center;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.6rem;
    }
    
    .hero-title-main {
        font-size: 3rem;
    }
    
    .hero-title-sub {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-logo {
        text-align: center;
    }
    
    .school-logo {
        width: 450px;
    }
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -2rem;
        right: -2rem;
        width: calc(100% + 4rem);
        background: transparent;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        padding: 0 2rem;
        height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        opacity: 0;
    }
    
    .nav-menu.mobile-active {
        height: 450px;
        opacity: 1;
        padding: 0 2rem;
    }
    
    .nav-menu li {
        transform: translateY(-15px);
        opacity: 0;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu.mobile-active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu.mobile-active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.mobile-active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.mobile-active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.mobile-active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.mobile-active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        text-align: center;
        background: transparent;
        border: none;
        line-height: 1.2;
    }
    
    .nav-menu a:hover {
        transform: scale(1.02);
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
}
/* Logo link styling */
.nav-left a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-left a:hover {
    transform: scale(1.05);
}
/* About Section */
.about-section {
    min-height: auto;
    background: rgb(0, 0, 0);
    position: relative;
    z-index: 10;
    padding: 6rem 2rem 7rem 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.about-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding: 0 2rem;
}

.about-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 2rem 0;
    letter-spacing: 2px;
}

.about-text {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 auto 4rem auto;
    text-align: justify;
    max-width: 1200px;
}

.about-text strong {
    font-weight: bold;
}

/* Responsive для About секции */
@media (max-width: 1024px) {
    .about-section {
        min-height: auto;
        padding: 4rem 1rem 5rem 1rem;
    }
    
    .about-content {
        margin-top: 1rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .trainers-section {
        margin-top: 2rem;
    }
    
    .trainers-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        min-height: auto;
        padding: 4rem 1rem 4rem 1rem;
    }
    
    .about-content {
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .trainers-section {
        margin-top: 1.5rem;
    }
    
    .trainers-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .trainers-container {
        padding: 2rem 1rem;
    }
    
    .why-trainer-section {
        margin-top: -15px;
        padding: 4rem 2rem 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        min-height: auto;
        padding: 3rem 0.5rem 3.5rem 0.5rem;
    }
    
    .about-content {
        margin-top: 0;
        padding: 0 0.5rem;
    }
    
    .about-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .trainers-section {
        margin-top: 1rem;
    }
    
    .trainers-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .trainers-container {
        padding: 1.5rem 1rem;
    }
    
    .why-trainer-section {
        margin-top: -10px;
        padding: 3rem 0.5rem 3rem 0.5rem;
    }
}
/* Плавная прокрутка для всего документа */
html {
    scroll-behavior: smooth;
}
/* Trainers Section */
.trainers-section {
    margin-top: 4rem;
}

.trainers-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.trainers-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.trainers-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 5;
}

.trainer-card {
    width: 100%;
    max-width: 1600px;
    height: 400px;
    background: rgba(15, 15, 15, 0.98);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.trainer-card:hover {
    transform: scale(1.05);
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trainer-info {
    flex: 1;
    z-index: 2;
    position: relative;
    padding: 3rem;
    width: 50%;
    transition: all 0.4s ease;
}

.trainer-card:hover .trainer-info {
    transform: translateX(10px);
}

.trainer-name {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.trainer-card:hover .trainer-name {
    color: #00c3ff;
    transform: scale(1.05);
}

.trainer-description {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    transition: all 0.4s ease;
}

.trainer-card:hover .trainer-description {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

.trainer-car {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    transition: all 0.4s ease;
}

.trainer-car img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(1.2);
    transform: scale(1.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trainer-card:hover .trainer-car {
    transform: translateX(-10px);
}

.trainer-card:hover .trainer-car img {
    transform: scale(1.3);
    opacity: 1;
    filter: brightness(1.3) saturate(1.1);
}

.trainers-slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trainers-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.trainers-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Responsive для тренеров */
@media (max-width: 1024px) {
    .trainers-section {
        margin-top: 2rem;
    }
    
    .trainers-title {
        font-size: 1.8rem;
    }
    
    .trainers-container {
        gap: 2rem;
        padding: 0 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trainer-card {
        width: 280px;
        height: 320px;
        flex-direction: column;
        max-width: none;
        cursor: pointer;
        border-radius: 20px;
        background: rgba(15, 15, 15, 0.95);
    }
    
    .trainer-card:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .trainer-info {
        width: 100%;
        padding: 0;
        order: 2;
        flex: 0 0 auto;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .trainer-card:hover .trainer-info {
        transform: none;
    }
    
    .trainer-name {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .trainer-name::after {
        content: "Подробнее";
        display: block;
        font-size: 1rem;
        font-weight: normal;
        color: #00c3ff;
        text-decoration: underline;
        margin-top: 0.5rem;
    }
    
    .trainer-description {
        display: none;
    }
    
    .trainer-car {
        width: 100%;
        height: 240px;
        padding: 2rem;
        order: 1;
        flex: 1;
    }
    
    .trainer-card:hover .trainer-car {
        transform: none;
    }
    
    .trainer-car img {
        transform: scale(1.2);
    }
    
    .trainer-card:hover .trainer-car img {
        transform: scale(1.3);
    }
    
    .about-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .trainers-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .trainers-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .trainer-card {
        width: 320px;
        height: 380px;
    }
    
    .trainer-card:hover {
        transform: scale(1.03);
    }
    
    .trainer-info {
        height: 60px;
    }
    
    .trainer-name {
        font-size: 1.2rem;
    }
    
    .trainer-name::after {
        content: "Подробнее";
        display: block;
        font-size: 0.9rem;
        font-weight: normal;
        color: #00c3ff;
        text-decoration: underline;
        margin-top: 0.3rem;
    }
    
    .trainer-car {
        height: 300px;
        padding: 2rem;
    }
    
    .trainer-car img {
        transform: scale(1.2);
    }
    
    .trainer-card:hover .trainer-car img {
        transform: scale(1.2);
    }
}
/* Navigation Spacer */
.nav-spacer {
    margin-left: 2rem;
}

/* Mobile Navigation Spacer */
@media (max-width: 768px) {
    .nav-spacer {
        margin-left: 0;
        margin-top: 1rem;
    }
}
/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-arrow {
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    transform: scale(1.2);
}

.scroll-arrow span {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    transform: rotate(90deg);
    display: block;
    transition: all 0.3s ease;
}

.scroll-arrow:hover span {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Скрытие стрелки при прокрутке */
.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Адаптивность для стрелки */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-arrow span {
        font-size: 1.8rem;
    }
}
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 25px;
    padding: 3rem;
    max-width: 98%;
    width: 95vw;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transition: none;
}

.modal-overlay.active .modal-content {
    transform: none;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-trainer-image {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.modal-trainer-image img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(1.2);
    transform: scale(1.2);
}

.modal-trainer-name {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-trainer-description {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: justify;
    max-width: 100%;
}

/* Скрытие скроллбара для модального окна */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
/* Why Trainer Section */
.why-trainer-section {
    min-height: 100vh;
    background: url('back2.jpg') center/cover no-repeat fixed;
    position: relative;
    z-index: 2;
    padding: 6rem 2rem 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: -20px;
}

.why-trainer-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.why-trainer-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 3rem 0;
    letter-spacing: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    background: transparent;
    padding: 2rem 1.5rem;
    text-align: left;
    position: relative;
}

.benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.benefit-item h3 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    font-style: normal;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefit-item p {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 1rem 0;
    text-align: justify;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
    text-justify: inter-word;
}

.benefit-item p:last-child {
    margin-bottom: 0;
}


/* Responsive для Why Trainer секции */
@media (max-width: 1200px) {
    .benefits-grid {
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
    }
    
    .benefit-item:not(:last-child)::after {
        right: -1rem;
    }
}

@media (max-width: 768px) {
    .why-trainer-section {
        padding: 4rem 1rem 3rem 1rem;
    }
    
    .why-trainer-content {
        padding: 3rem 2rem;
    }
    
    .why-trainer-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefit-item {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .benefit-item:not(:last-child)::after {
        display: none;
    }
    
    .benefit-item:not(:last-child) {
        padding-bottom: 3rem;
        margin-bottom: 0;
    }
    
    .benefit-item h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .why-trainer-section {
        padding: 3rem 0.5rem 2rem 0.5rem;
    }
    
    .why-trainer-content {
        padding: 2rem 1.5rem;
    }
    
    .why-trainer-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .benefit-item h3 {
        font-size: 1.4rem;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}
/* Responsive для модального окна */
@media (max-width: 768px) {
    .modal-content {
        width: 97vw;
        max-width: 99%;
        padding: 2rem;
    }
    
    .modal-trainer-image {
        height: 380px;
    }
    
    .modal-trainer-name {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-trainer-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 99vw;
        max-width: 100%;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .modal-trainer-image {
        height: 320px;
    }
    
    .modal-trainer-name {
        font-size: 1.7rem;
    }
    
    .modal-trainer-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}
/* Services Section */
.services-section {
    min-height: auto;
    background: rgb(0, 0, 0);
    position: relative;
    z-index: 3;
    padding: 6rem 2rem 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.services-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.services-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 4rem 0;
    letter-spacing: 2px;
}

.packages-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 6rem 0 4rem 0;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.service-card:hover {
    transform: scale(1.05);
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.service-description {
    flex: 1;
    margin-bottom: 2rem;
}

.service-description p {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    text-align: left;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-button {
    width: 100%;
    background: #00c3ff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.service-button:hover {
    background: #0099cc;
    transform: scale(1.02);
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.price-current {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #00c3ff;
}

.price-old {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

/* Responsive для Services секции */
@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1rem 4rem 1rem;
        min-height: auto;
    }
    
    .services-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .packages-title {
        font-size: 2.2rem;
        margin: 4rem 0 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .service-card:hover {
        transform: scale(1.02);
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-description p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .price-old {
        font-size: 1rem;
    }
    
    .service-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0.5rem 3rem 0.5rem;
    }
    
    .services-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }
    
    .packages-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin: 3rem 0 2rem 0;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 320px;
    }
    
    .service-card:hover {
        transform: scale(1.01);
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .service-description p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .price-current {
        font-size: 1.3rem;
    }
    
    .price-old {
        font-size: 0.9rem;
    }
    
    .service-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }
}
/* Package Cards Styles */
.package-card {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.package-card:hover {
    transform: scale(1.05);
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.package-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.package-subtitle {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.package-pricing {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-cost {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cost-label, .benefit-label {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cost-value {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.cost-old {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.package-benefit {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-value {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #00c3ff;
}

.package-button {
    width: 100%;
    background: #00c3ff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button:hover {
    background: #0099cc;
    transform: scale(1.02);
}

/* Responsive для Package Cards */
@media (max-width: 768px) {
    .packages-title {
        font-size: 2.2rem;
        margin: 4rem 0 3rem 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .package-card:hover {
        transform: scale(1.02);
    }
    
    .package-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .package-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .cost-value {
        font-size: 1.5rem;
    }
    
    .cost-old {
        font-size: 1rem;
    }
    
    .benefit-value {
        font-size: 1.2rem;
    }
    
    .package-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .packages-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin: 3rem 0 2rem 0;
    }
    
    .package-card {
        padding: 1.5rem 1rem;
        min-height: 320px;
    }
    
    .package-card:hover {
        transform: scale(1.01);
    }
    
    .package-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .package-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .cost-value {
        font-size: 1.3rem;
    }
    
    .cost-old {
        font-size: 0.9rem;
    }
    
    .benefit-value {
        font-size: 1.1rem;
    }
    
    .package-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}
/* Certificates Section */
.certificates-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 6rem 0 4rem 0;
    letter-spacing: 2px;
    text-align: center;
}

.certificates-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.certificates-images {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
}

.certificate-image {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 50%;
}

.certificate-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.certificate-image img {
    width: 100%;
    height: auto;
    display: block;
}

.certificates-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.certificates-description p {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

.certificates-description p:first-child {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-align: center;
}

.certificates-button {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    background: #00c3ff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem auto 0 auto;
    text-decoration: none;
    text-align: center;
}

.certificates-button:hover {
    background: #0099cc;
    transform: scale(1.02);
    color: white;
    text-decoration: none;
}

/* Responsive для Certificates */
@media (max-width: 768px) {
    .certificates-title {
        font-size: 2.2rem;
        margin: 4rem 0 3rem 0;
    }
    
    .certificates-container {
        gap: 2rem;
    }
    
    .certificates-images {
        gap: 1rem;
        flex-direction: column;
    }
    
    .certificate-image {
        max-width: 100%;
    }
    
    .certificates-description {
        gap: 1.2rem;
    }
    
    .certificates-description p {
        font-size: 1rem;
        text-align: center;
    }
    
    .certificates-description p:first-child {
        font-size: 1.2rem;
    }
    
    .certificates-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .certificates-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin: 3rem 0 2rem 0;
    }
    
    .certificates-container {
        gap: 1.5rem;
    }
    
    .certificates-images {
        gap: 1rem;
    }
    
    .certificates-description {
        gap: 1rem;
    }
    
    .certificates-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .certificates-description p:first-child {
        font-size: 1.1rem;
    }
    
    .certificates-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}
/* Video Section */
.video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
}

.video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.video-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 4rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.video-description {
    margin-bottom: 3rem;
}

.video-description p {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.4rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.video-description p:last-child {
    margin-bottom: 0;
}

.video-button {
    background: #00c3ff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1.2rem 3rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: none;
}

.video-button:hover {
    background: #0099cc;
    transform: scale(1.05);
}

/* Responsive для Video Section */
@media (max-width: 768px) {
    .video-background {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center center;
    }
    
    .video-content {
        padding: 1.5rem;
    }
    
    .video-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }
    
    .video-description {
        margin-bottom: 2rem;
    }
    
    .video-description p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .video-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-background {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center center;
    }
    
    .video-content {
        padding: 1rem;
    }
    
    .video-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .video-description p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .video-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Reviews Section */
.reviews-section {
    min-height: auto;
    background: rgb(0, 0, 0);
    position: relative;
    z-index: 3;
    padding: 6rem 2rem 7rem 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.reviews-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.reviews-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 4rem 0;
    letter-spacing: 2px;
}

.reviews-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.reviews-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 900px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
    flex-shrink: 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-snap-align: start;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.review-name {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0;
}

.review-rating {
    font-size: 1.6rem;
    color: #FFD700;
    letter-spacing: 3px;
    margin-left: 1rem;
}

.review-text {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.slider-btn {
    background: transparent;
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-weight: bold;
}

.slider-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Responsive для Reviews секции */
@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 1rem;
    }
    
    .reviews-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .reviews-slider {
        gap: 1rem;
    }
    
    .reviews-container {
        gap: 1.5rem;
        padding: 2.5rem 1.5rem;
    }
    
    .review-card {
        min-width: 100%;
        max-width: 100%;
        padding: 2.5rem 2rem;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    .review-header {
        position: absolute;
        top: 1.5rem;
        left: 2rem;
        right: 2rem;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 0;
        margin-top: 0;
        padding-top: 0;
    }
    
    .review-name {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        text-align: left;
        margin-top: 0;
        padding-top: 0;
    }
    
    .review-rating {
        font-size: 1.3rem;
        margin-left: 0;
        letter-spacing: 2px;
    }
    
    .review-text {
        font-size: 1rem;
        margin-top: 4rem;
    }
    
    .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 3rem 0.5rem;
    }
    
    .reviews-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }
    
    .reviews-slider {
        flex-direction: row;
        gap: 0;
    }
    
    .reviews-container {
        order: 1;
        padding: 2rem 1rem;
        gap: 1rem;
    }
    
    .slider-btn {
        display: none;
    }
    
    .review-card {
        min-width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        min-height: 160px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1rem;
        margin-top: 1rem;
        padding-top: 0;
    }
    
    .review-name {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
        text-align: left;
        margin-top: 0;
        padding-top: 0;
    }
    
    .review-rating {
        font-size: 1.2rem;
        margin-left: 0;
        letter-spacing: 1px;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 6rem;
}

.faq-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 4rem 0;
    letter-spacing: 2px;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.faq-item:hover {
    transform: scale(1.05);
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
}

.faq-question span {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    flex: 1;
    margin-right: 1rem;
}

.faq-toggle {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    width: auto;
    height: auto;
    padding: 0;
}

.faq-toggle:hover {
    color: #00c3ff;
    transform: scale(1.3);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg) scale(1.2);
    color: #00c3ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    padding: 0 2.5rem 2rem 2.5rem;
    margin: 0;
}

/* Responsive для FAQ секции */
@media (max-width: 768px) {
    .faq-section {
        margin-top: 4rem;
    }
    
    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .faq-item:hover {
        transform: scale(1.02);
    }
    
    .faq-question {
        padding: 1.5rem 2rem;
    }
    
    .faq-question span {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        font-size: 2.2rem;
    }
    
    .faq-toggle:hover {
        transform: scale(1.25);
    }
    
    .faq-item.active .faq-toggle {
        transform: rotate(45deg) scale(1.15);
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding: 0 2rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin-top: 3rem;
    }
    
    .faq-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }
    
    .faq-item:hover {
        transform: scale(1.01);
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 2rem;
    }
    
    .faq-toggle:hover {
        transform: scale(1.2);
    }
    
    .faq-item.active .faq-toggle {
        transform: rotate(45deg) scale(1.1);
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

/* FAQ Telegram Section */
.faq-telegram-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
}

.faq-telegram-text {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.faq-telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    background: #00c3ff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-telegram-button:hover {
    background: #0099cc;
    transform: scale(1.02);
}

.faq-telegram-icon {
    width: 20px;
    height: 20px;
}

/* Responsive для FAQ Telegram Section */
@media (max-width: 768px) {
    .faq-telegram-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .faq-telegram-text {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .faq-telegram-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-telegram-section {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .faq-telegram-text {
        font-size: 1rem;
    }
    
    .faq-telegram-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .faq-telegram-icon {
        width: 18px;
        height: 18px;
    }
}

/* Social Media Section */
.social-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('back3.jpg') center/cover no-repeat fixed;
    margin-top: -20px;
    padding: 6rem 2rem 6rem 2rem;
}

.social-overlay {
    display: none;
}

.social-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 4rem 3rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.social-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 4rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    text-decoration: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.social-link:hover {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-link span {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    flex: 1;
    text-align: center;
    margin: 0 1rem;
}

.social-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover .social-arrow {
    color: #00c3ff;
    transform: translateX(5px);
}

/* Цвета для разных соцсетей */
.social-link[data-social="tiktok"]:hover {
    background: linear-gradient(135deg, #ff0050, #000);
    color: white;
}

.social-link[data-social="telegram"]:hover {
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: white;
}

.social-link[data-social="youtube"]:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-link[data-social="instagram"]:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

/* Responsive для Social секции */
@media (max-width: 768px) {
    .social-section {
        padding: 4rem 1rem;
    }
    
    .social-content {
        padding: 3rem 2rem;
    }
    
    .social-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        letter-spacing: 1px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 1.2rem 1.5rem;
    }
    
    .social-link:hover {
        transform: scale(1.02);
    }
    
    .social-link span {
        font-size: 1.1rem;
    }
    
    .social-icon {
        width: 25px;
        height: 25px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .social-section {
        padding: 3rem 0.5rem;
    }
    
    .social-content {
        padding: 2rem 1.5rem;
    }
    
    .social-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .social-link {
        padding: 1rem 1.2rem;
    }
    
    .social-link:hover {
        transform: scale(1.01);
    }
    
    .social-link span {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 22px;
        height: 22px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .social-arrow {
        font-size: 1.3rem;
    }
}
/* Contact Form Section */
.contact-section {
    min-height: auto;
    background: rgb(0, 0, 0);
    position: relative;
    z-index: 3;
    padding: 6rem 2rem 7rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -20px;
}

.contact-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 3rem 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

.contact-description {
    margin-bottom: 4rem;
}

.contact-description p {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.contact-description p:last-child {
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.form-row.single-field {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.form-row.single-field input {
    width: 100%;
    max-width: 400px;
    background: rgba(15, 15, 15, 0.98);
    border: none;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: white;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.form-row.single-field input:hover {
    transform: scale(1.05);
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-row.single-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
}

.form-row.single-field input:focus {
    outline: none;
    background: rgba(25, 25, 25, 0.98);
    transform: scale(1.02);
}

.contact-form input,
.contact-form select {
    flex: 1;
    background: rgba(15, 15, 15, 0.98);
    border: none;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.contact-form input:hover,
.contact-form select:hover {
    transform: scale(1.05);
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    background: rgba(25, 25, 25, 0.98);
    transform: scale(1.02);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: rgba(15, 15, 15, 0.98);
    color: white;
}

.contact-submit {
    background: #00c3ff;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1.5rem 3rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 1rem;
}

.contact-submit:hover {
    background: #0099cc;
    transform: scale(1.05);
}

.contact-submit:disabled {
    background: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
}

/* Responsive для Contact секции */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .contact-description {
        margin-bottom: 3rem;
    }
    
    .contact-description p {
        font-size: 1.1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-row.single-field {
        width: 100%;
    }
    
    .form-row.single-field input {
        max-width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .form-row.single-field input:hover {
        transform: scale(1.02);
    }
    
    .contact-form input,
    .contact-form select {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .contact-form input:hover,
    .contact-form select:hover {
        transform: scale(1.02);
    }
    
    .contact-submit {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .contact-submit:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0.5rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .contact-description {
        margin-bottom: 2rem;
    }
    
    .contact-description p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .contact-form input,
    .contact-form select {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .contact-form input:hover,
    .contact-form select:hover {
        transform: scale(1.01);
    }
    
    .form-row.single-field input {
        max-width: 100%;
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .form-row.single-field input:hover {
        transform: scale(1.01);
    }
    
    .contact-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-submit:hover {
        transform: scale(1.01);
    }
}
/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.success-modal-overlay.active .success-modal-content {
    opacity: 1;
}

.success-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.success-message {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-close-btn {
    background: #00c3ff;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1rem 2.5rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: #0099cc;
    transform: scale(1.05);
}

/* Responsive для Success Modal */
@media (max-width: 768px) {
    .success-modal-content {
        padding: 2.5rem 2rem;
        width: 95%;
    }
    
    .success-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .success-message {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .success-close-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .success-modal-content {
        padding: 2rem 1.5rem;
        width: 98%;
    }
    
    .success-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .success-message {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .success-close-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 2rem 0;
    margin-top: -2rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-brand {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.footer-brand-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-brand-link:hover .footer-brand-name {
    color: #00c3ff;
    transform: scale(1.02);
}

.footer-brand-name {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.footer-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.footer-link {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00c3ff;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-copyright {
    font-family: Verdana, Geneva, sans-serif;
    color: rgba(255, 255, 255, 0.6);
}

.footer-policy {
    font-family: Verdana, Geneva, sans-serif;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy:hover {
    color: #00c3ff;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.05);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive для Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        flex: none;
        width: 100%;
    }
    
    .footer-left {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .footer-brand-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .footer-brand-name {
        font-size: 2rem;
    }
    
    .footer-social {
        gap: 0.8rem;
    }
    
    .footer-social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }
}
/* Main Page Hero Section */
.hero-main {
    display: flex;
    min-height: 100vh;
    background: url('back4.jpg') center/cover no-repeat fixed;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.main-logo-container {
    text-align: left;
    z-index: 2;
    position: fixed;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.main-logo {
    width: 800px;
    height: auto;
    max-width: 90vw;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
}

@media (max-width: 768px) {
    .hero-main {
        background-position: 80% center;
    }
    
    .main-logo {
        width: 600px;
    }
    
    .main-logo-container {
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 480px) {
    .hero-main {
        background-position: 75% center;
    }
    
    .main-logo {
        width: 450px;
    }
    
    .main-logo-container {
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* About section внутри products section */
.products-section .about-section {
    min-height: auto;
    margin-bottom: 4rem;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.products-section .about-content {
    padding: 0;
    margin-top: 0;
}

.products-section .about-title {
    margin-bottom: 2rem;
}

.products-section .about-text {
    margin-bottom: 0;
}

/* Products Section */
.products-section {
    background: #000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 100vh;
    position: relative;
    z-index: 10;
    padding: 4rem 0 8rem 0;
    min-height: 50vh;
}

.products-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-title {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    text-align: center;
    margin: 0 0 4rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.product-item {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.product-item:visited {
    color: inherit;
}

.product-item:link {
    color: inherit;
}



.product-item:hover {
    background: rgba(20, 20, 20, 0.98);
    transform: translateY(-5px);
}

.product-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.product-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.product-name {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
}

.product-description {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.product-link {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 0.9rem;
    color: #00c3ff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: white;
}

/* Responsive для Products Section */
@media (max-width: 768px) {
    .products-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-item:nth-child(5) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }
    
    .product-item {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .product-image {
        max-height: 140px;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }
    
    .products-section {
        padding: 3rem 0;
    }
    
    .product-item:nth-child(5) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }
    
    .products-content {
        padding: 0 1rem;
    }
    
    .product-item {
        padding: 1.5rem 1rem;
        min-height: 200px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
}
/* Media Page Hero Section */
.media-hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

.media-hero .video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.media-hero .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 40px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.media-logo-container {
    text-align: center;
    z-index: 3;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.media-main-logo {
    width: 1200px;
    height: auto;
    max-width: 90vw;
}

@media (max-width: 768px) {
    .media-main-logo {
        width: 900px;
    }
    
    .media-hero .video-background {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .media-main-logo {
        width: 675px;
    }
    
    .media-hero .video-background {
        position: fixed;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center center;
    }
}

/* Media Page About Section */
.media-content {
    margin-top: 100vh;
    position: relative;
    z-index: 10;
}

.media-about-section {
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Team Section */
.team-section {
    background: #000;
    padding: 4rem 0;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-title {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(20, 20, 20, 0.98);
    transform: translateY(-5px);
}

.member-name {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.member-role {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 1rem;
    color: #00c3ff;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-description {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive для Team Section */
@media (max-width: 768px) {
    .team-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-content {
        padding: 0 1rem;
    }
    
    .team-title {
        font-size: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 0.85rem;
    }
    
    .member-description {
        font-size: 0.85rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    background: #000;
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.portfolio-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-title {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    text-align: center;
    margin: 0 0 4rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1rem;
    align-items: center;
    justify-items: center;
}

.portfolio-item {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 1;
}

.portfolio-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    max-width: 720px;
    max-height: 405px;
    object-fit: cover;
}

.portfolio-item:hover {
    transform: scale(1.02);
    background: rgba(20, 20, 20, 0.98);
}

.portfolio-horizontal {
    width: 100%;
    justify-self: stretch;
}

.portfolio-vertical {
    width: 60%;
    max-width: 160px;
}



.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.1), rgba(0, 195, 255, 0.05));
    position: relative;
    pointer-events: none;
}

/* Video placeholder title for ads-media page */
.video-placeholder .video-title {
    font-family: Verdana, "Tahoma", "DejaVu Sans", "Bitstream Vera Sans", Geneva, sans-serif;
    font-size: 1.2rem;
    color: white;
    text-align: center;
    margin: 0;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

/* Responsive для Portfolio Section */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-rows: repeat(3, 250px);
    }
    
    .portfolio-item {
        height: 230px;
    }
    
    .portfolio-horizontal {
        max-width: 400px;
    }
    
    .portfolio-vertical {
        max-width: 130px;
    }
}

@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .portfolio-section {
        padding: 4rem 0;
        margin-top: 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
        gap: 0;
    }
    
    .portfolio-item {
        height: 180px;
        width: 100%;
        max-width: 100%;
    }
    
    .portfolio-horizontal,
    .portfolio-vertical {
        width: 100%;
        max-width: 100%;
    }
    
    .video-placeholder .video-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }
    
    .portfolio-section {
        padding: 4rem 0;
    }
    
    .portfolio-content {
        padding: 0 1rem;
    }
    
    .portfolio-grid {
        grid-template-rows: repeat(6, 180px);
    }
    
    .portfolio-item {
        height: 160px;
    }
    
    .video-placeholder .video-title {
        font-size: 0.9rem;
    }
}
/* Portfolio More Button */
.portfolio-more-button {
    text-align: center;
    margin-top: 3rem;
}

.portfolio-more-button .service-button {
    width: 100%;
    max-width: 300px;
    background: #00c3ff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-more-button .service-button:hover {
    background: #0099cc;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .portfolio-more-button {
        margin-top: 2rem;
    }
    
    .portfolio-more-button .service-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio-more-button {
        margin-top: 1.5rem;
    }
    
    .portfolio-more-button .service-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}
/* Team Section */
.team-section {
    min-height: 100vh;
    background: url('back5.jpg') center/cover no-repeat fixed;
    position: relative;
    z-index: 2;
    padding: 6rem 2rem 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: -20px;
}

.team-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.team-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 3rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: transparent;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-avatar:hover {
    border-color: #00c3ff;
    transform: scale(1.05);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.team-role {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: #00c3ff;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.team-description {
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.team-description p {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-description p:last-child {
    margin-bottom: 0;
}

/* Responsive для Team Section */
@media (max-width: 1024px) {
    .team-section {
        padding: 4rem 1rem;
        margin-top: -15px;
        padding: 4rem 2rem 4rem 2rem;
    }
    
    .team-content {
        padding: 3rem 2rem;
    }
    
    .team-grid {
        gap: 2rem;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 1rem 3rem 1rem;
        margin-top: -10px;
        padding: 3rem 0.5rem 3rem 0.5rem;
    }
    
    .team-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member:not(:last-child)::after {
        display: none;
    }
    
    .team-member:not(:last-child)::before {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }
    
    .team-member {
        padding: 1.5rem 1rem;
        position: relative;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .team-description p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 0.5rem 2rem 0.5rem;
    }
    
    .team-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .team-content {
        padding: 2rem 1rem;
    }
    
    .team-member {
        padding: 1rem 0.5rem;
    }
    
    .team-avatar {
        width: 70px;
        height: 70px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-role {
        font-size: 0.9rem;
    }
    
    .team-description p {
        font-size: 0.85rem;
    }
}
/* Team Social Buttons */
.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.team-social-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-social-btn:hover {
    background: #00c3ff;
    color: white;
    border-color: #00c3ff;
    transform: translateY(-2px);
}

.team-social-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive для Team Social */
@media (max-width: 768px) {
    .team-social-btn {
        width: 32px;
        height: 32px;
    }
    
    .team-social-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .team-social {
        gap: 0.3rem;
        margin-top: 1rem;
    }
    
    .team-social-btn {
        width: 30px;
        height: 30px;
    }
    
    .team-social-btn svg {
        width: 14px;
        height: 14px;
    }
}
/* Responsive для Media About Section */
@media (max-width: 768px) {
    .media-about-section {
        padding: 4rem 1rem 2rem 1rem;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .media-about-section {
        padding: 3rem 0.5rem 1.5rem 0.5rem;
        margin-bottom: 0;
    }
}
/* Services Subtitle */
.services-subtitle {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: -2rem 0 3rem 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .services-subtitle {
        font-size: 0.9rem;
        margin: -1.5rem 0 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .services-subtitle {
        font-size: 0.8rem;
        margin: -1rem 0 2rem 0;
    }
}
/* Tour Page Styles */
.tour-hero {
    display: flex;
    height: 100vh;
    background: url('back6.jpg') center/cover no-repeat fixed;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-section {
    position: relative;
    z-index: 10;
}

.tour-logo-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    padding-top: 80px;
}

.tour-logo-section {
    position: fixed;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-main-logo {
    width: 160px;
    height: auto;
    display: block;
}

.tour-description {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    max-width: 400px;
}

.tour-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    color: #00c3ff;
    margin: 0 0 1rem 0;
    letter-spacing: 1px;
}

.tour-text {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.tour-main-logo {
    width: 1200px;
    height: auto;
    opacity: 1;
    filter: brightness(1.1);
}

/* Responsive для Tour страницы */
@media (max-width: 1024px) {
    .tour-main-logo {
        width: 1200px;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        overflow: hidden;
    }
    
    .tour-main-logo {
        width: 900px;
    }
}

@media (max-width: 480px) {
    .tour-main-logo {
        width: 675px;
    }
}
/* Tour page social section positioning */
.tour-hero + .social-section {
    margin-top: 100vh;
    position: relative;
    z-index: 10;
    background: #000000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.tour-hero + .social-section .social-content {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin: 2rem;
}
/* Telegram Widget Styles */
.telegram-widget {
    position: fixed;
    right: 250px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.telegram-big-btn {
    background: linear-gradient(135deg, #0088cc, #0066aa);
    color: white;
    border: none;
    padding: 2rem 3rem;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: Verdana, Geneva, sans-serif;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.telegram-big-btn:hover {
    background: linear-gradient(135deg, #006699, #004477);
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 136, 204, 0.5);
}

.telegram-icon {
    width: 32px;
    height: 32px;
}

/* Responsive для Telegram Widget */
@media (max-width: 1200px) {
    .telegram-widget {
        margin-left: 2rem;
    }
    
    .telegram-big-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .telegram-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .tour-logo-container {
        flex-direction: column;
        gap: 2rem;
        padding-left: 2%;
        padding-right: 2%;
    }
    
    .telegram-widget {
        margin-left: 0;
    }
    
    .telegram-big-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .telegram-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .telegram-big-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .telegram-icon {
        width: 20px;
        height: 20px;
    }
}
/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 195, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top:hover {
    background: rgba(0, 195, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Responsive для кнопки */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}
/* Responsive для Tour страницы */
@media (max-width: 1200px) {
    .tour-main-logo {
        width: 500px;
    }
    
    .tour-logo-container {
        gap: 2rem;
    }
    
    .telegram-widget {
        width: 300px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        overflow: hidden;
    }
    
    .tour-logo-container {
        flex-direction: column;
        gap: 2rem;
        padding-left: 2%;
        padding-right: 2%;
        align-items: center;
    }
    
    .tour-logo-section {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .tour-main-logo {
        width: 400px;
    }
    
    .tour-description {
        width: 100%;
        max-width: 500px;
    }
    
    .tour-text {
        text-align: center;
    }
    
    .telegram-widget {
        width: 100%;
        max-width: 350px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .tour-main-logo {
        width: 300px;
    }
    
    .tour-description {
        padding: 1.5rem;
    }
    
    .tour-title {
        font-size: 1.6rem;
    }
    
    .tour-text {
        font-size: 0.9rem;
    }
    
    .telegram-widget {
        width: 100%;
        max-width: 320px;
    }
}
/* Tour Description Bottom */
.tour-description-bottom {
    position: fixed;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.tour-description-text {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    white-space: nowrap;
}
/* Post Submission Section */
.post-section {
    min-height: auto;
    background: rgb(0, 0, 0);
    position: relative;
    z-index: 10;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 100vh;
}

.post-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.post-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 2rem 0;
    letter-spacing: 2px;
}

.post-description {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 3rem 0;
    text-align: center;
}

.post-button-container {
    display: flex;
    justify-content: center;
}

.post-button-container .service-button {
    text-decoration: none;
    display: inline-block;
    max-width: 300px;
}

/* Responsive для Post Section */
@media (max-width: 768px) {
    .post-section {
        padding: 4rem 1rem;
    }
    
    .post-content {
        padding: 3rem 2rem;
    }
    
    .post-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .post-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .post-section {
        padding: 3rem 0.5rem;
    }
    
    .post-content {
        padding: 2rem 1.5rem;
    }
    
    .post-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .post-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}
/* Responsive для средних экранов */
@media (max-width: 1200px) and (min-width: 1025px) {
    .tour-logo-section {
        left: 100px;
    }
    
    .tour-main-logo {
        width: 580px;
    }
    
    .telegram-widget {
        right: 120px;
    }
    
    .telegram-big-btn {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .tour-description-bottom {
        bottom: 150px;
    }
    
    .tour-description-text {
        font-size: 1.2rem;
    }
}

/* Responsive для малых десктопов */
@media (max-width: 1400px) and (min-width: 1201px) {
    .tour-logo-section {
        left: 120px;
    }
    
    .tour-main-logo {
        width: 650px;
    }
    
    .telegram-widget {
        right: 150px;
    }
    
    .telegram-big-btn {
        padding: 1.8rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .tour-description-bottom {
        bottom: 180px;
    }
    
    .tour-description-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 1700px) and (min-width: 1201px) {
    .tour-logo-section {
        left: 120px;
    }
    
    .tour-main-logo {
        width: 650px;
    }
    
    .telegram-widget {
        right: 150px;
    }
    
    .telegram-big-btn {
        padding: 1.8rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .tour-description-bottom {
        bottom: 180px;
    }
    
    .tour-description-text {
        font-size: 1.3rem;
    }
}

/* Mobile Responsive для Tour страницы */
@media (max-width: 1024px) {
    .tour-logo-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        z-index: 2;
        padding: 80px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    
    .tour-logo-section {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        order: 1;
    }
    
    .tour-main-logo {
        width: 600px;
        height: auto;
        display: block;
    }
    
    .tour-description-bottom {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        z-index: 3;
        text-align: center;
        order: 2;
        margin-top: -6rem;
    }
    
    .tour-description-text {
        font-size: 1.1rem;
        white-space: normal;
        max-width: 300px;
        line-height: 1.4;
    }
    
    .telegram-widget {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        z-index: 3;
        order: 3;
        margin-top: 1rem;
    }
    
    .telegram-big-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .tour-main-logo {
        width: 550px;
    }
    
    .tour-description-text {
        font-size: 1rem;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .tour-logo-container {
        padding: 80px 15px 15px 15px;
        gap: 1.5rem;
    }
    
    .tour-main-logo {
        width: 500px;
    }
    
    .tour-description-text {
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .telegram-big-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}
/* Team Page Styles */
.team-hero {
    height: 100vh;
    background: url('back7.jpg') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    z-index: -1;
}

.team-logo-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
    pointer-events: none;
}

.team-main-logo {
    width: 1200px;
    height: auto;
    max-width: 90vw;
    opacity: 1;
    filter: brightness(1.1);
}

/* Responsive для Team страницы */
@media (max-width: 768px) {
    .team-hero {
        background: url('back9.jpg') center/cover no-repeat fixed;
    }
    
    .team-main-logo {
        width: 900px;
    }
}

@media (max-width: 480px) {
    .team-hero {
        background: url('back9.jpg') center/cover no-repeat fixed;
    }
    
    .team-main-logo {
        width: 675px;
    }
}
/* Team page about section */
.team-about-section {
    min-height: auto;
    background: transparent;
    position: relative;
    z-index: 5;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.team-about-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    background: rgb(0, 0, 0);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 2rem;
}

.team-about-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 2rem 0;
    letter-spacing: 2px;
}

.team-about-text {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 auto;
    text-align: justify;
    max-width: 1000px;
}

/* Responsive для Team About секции */
@media (max-width: 768px) {
    .team-about-section {
        padding: 4rem 1rem;
    }
    
    .team-about-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .team-about-text {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-about-section {
        padding: 3rem 0.5rem;
    }
    
    .team-about-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .team-about-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
/* Team page about section */
.team-about-section {
    min-height: auto;
    background: rgb(0, 0, 0);
    position: relative;
    z-index: 5;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: -20px;
}

.team-about-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.team-about-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 2rem 0;
    letter-spacing: 2px;
}

.team-about-text {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 auto;
    text-align: justify;
    max-width: 1000px;
}

/* Responsive для Team About секции */
@media (max-width: 768px) {
    .team-about-section {
        padding: 4rem 1rem;
    }
    
    .team-about-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .team-about-text {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-about-section {
        padding: 3rem 0.5rem;
    }
    
    .team-about-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .team-about-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
/* Pilots Section */
.pilots-section {
    margin-top: 4rem;
}

.pilots-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.pilots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}



.pilots-grid .pilot-card-first {
    grid-column: 1 / -1;
    max-width: 550px;
    margin: 0 auto;
    order: -1;
}

.pilot-card {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    min-height: 700px;
    max-height: 750px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
}

.pilot-card:hover {
    transform: scale(1.05);
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pilot-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.pilot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: brightness(1.1);
    transition: all 0.4s ease;
}

.pilot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 4rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pilot-card:hover .pilot-image img {
    opacity: 1;
    filter: brightness(1.2);
    transform: scale(1.05);
}

.pilot-name {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin: 0;
    transition: all 0.4s ease;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.pilot-details {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.1rem;
    color: #00c3ff;
    text-decoration: underline;
    transition: all 0.4s ease;
    cursor: pointer;
    font-weight: bold;
}

.pilot-card:hover .pilot-name {
    color: #00c3ff;
}

/* Responsive для Pilots секции */
@media (max-width: 768px) {
    .pilots-section {
        margin-top: 3rem;
    }
    
    .pilots-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .pilots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .pilots-grid .pilot-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .pilots-grid .pilot-card-first {
        grid-column: 1 / -1;
        max-width: 380px;
        margin: 0 auto;
        order: -1;
    }
    
    .pilot-card {
        min-height: 500px;
        max-height: 550px;
    }
    
    .pilot-card:hover {
        transform: scale(1.02);
    }
    
    .pilot-name {
        font-size: 1.6rem;
    }
    
    .pilot-details {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pilots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .pilots-grid .pilot-card:last-child {
        grid-column: 1;
        max-width: none;
    }
    
    .pilots-grid .pilot-card-first {
        grid-column: 1;
        max-width: none;
        order: -1;
    }
    
    .pilot-card {
        min-height: 450px;
        max-height: 500px;
    }
    
    .pilot-name {
        font-size: 1.4rem;
    }
    
    .pilot-details {
        font-size: 0.95rem;
    }
}

/* Pilot Modal Styles - максимальный z-index */
.pilot-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem;
    box-sizing: border-box;
}

.pilot-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.pilot-modal-content {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: calc(100vh - 4rem);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: auto;
}

.pilot-modal-overlay.active .pilot-modal-content {
    transform: scale(1) translateY(0);
}

.pilot-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pilot-modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 0, 0, 0.5);
}

.pilot-modal-close svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.pilot-modal-image {
    width: 100%;
    height: 45vh;
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.1), rgba(0, 0, 0, 0.3));
}

.pilot-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.4s ease;
}

.pilot-modal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.98));
    pointer-events: none;
}

.pilot-modal-info {
    padding: 3rem;
    flex: 1;
    overflow-y: auto;
    background: rgba(15, 15, 15, 0.98);
    border-radius: 0 0 25px 25px;
}

.pilot-modal-name {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.pilot-modal-description {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: justify;
}

.pilot-modal-description p {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.pilot-modal-description p:nth-child(1) { animation-delay: 0.1s; }
.pilot-modal-description p:nth-child(2) { animation-delay: 0.2s; }
.pilot-modal-description p:nth-child(3) { animation-delay: 0.3s; }
.pilot-modal-description p:nth-child(4) { animation-delay: 0.4s; }
.pilot-modal-description p:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pilot-modal-description p:last-child {
    margin-bottom: 0;
}

.pilot-modal-description strong {
    color: #00c3ff;
    font-weight: bold;
}

/* Кастомный скроллбар для модального окна */
.pilot-modal-info::-webkit-scrollbar {
    width: 8px;
}

.pilot-modal-info::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.pilot-modal-info::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00c3ff, rgba(0, 195, 255, 0.5));
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pilot-modal-info::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00a8d6, #00c3ff);
}

/* Responsive для модального окна */
@media (max-width: 768px) {
    .pilot-modal-overlay {
        padding: 1rem;
    }
    
    .pilot-modal-content {
        max-width: 100%;
        width: 100%;
        max-height: calc(100vh - 2rem);
        border-radius: 20px;
    }
    
    .pilot-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .pilot-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .pilot-modal-image {
        height: 35vh;
        border-radius: 20px 20px 0 0;
    }
    
    .pilot-modal-info {
        padding: 2rem;
        border-radius: 0 0 20px 20px;
    }
    
    .pilot-modal-name {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    
    .pilot-modal-description {
        font-size: 1.1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .pilot-modal-overlay {
        padding: 0.5rem;
    }
    
    .pilot-modal-content {
        max-width: 100%;
        width: 100%;
        max-height: calc(100vh - 1rem);
        border-radius: 15px;
    }
    
    .pilot-modal-image {
        height: 30vh;
        border-radius: 15px 15px 0 0;
    }
    
    .pilot-modal-info {
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
    }
    
    .pilot-modal-name {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .pilot-modal-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Achievements Section */
.achievements-section {
    min-height: 100vh;
    background: url('back2.jpg') center/cover no-repeat fixed;
    position: relative;
    z-index: 2;
    padding: 6rem 2rem 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: -20px;
}

.achievements-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.achievements-title {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin: 0 0 3rem 0;
    letter-spacing: 2px;
}

.achievements-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.achievements-container {
    flex: 1;
    max-width: 800px;
    position: relative;
    border-radius: 15px;
    height: 800px;
}

.achievement-card {
    background: rgba(15, 15, 15, 0.95);
    border-radius: 15px;
    padding: 3rem;
    text-align: left;
    height: 800px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
    pointer-events: none;
    overflow: hidden;
}

.achievement-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.achievement-card.prev {
    transform: translateX(-50px);
    opacity: 0;
}

.achievement-card.next {
    transform: translateX(50px);
    opacity: 0;
}

.achievement-year {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 4rem;
    font-weight: bold;
    font-style: normal;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-category h4 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievement-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievement-category li {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.achievement-category li:before {
    content: '•';
    color: #00c3ff;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.achievements-slider-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 1rem;
}

.achievements-slider-btn:hover {
    color: #00c3ff;
    transform: scale(1.2);
}

.achievements-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.achievements-slider-btn svg {
    width: 32px;
    height: 32px;
}

/* Responsive для Achievements секции */
@media (max-width: 768px) {
    .achievements-section {
        padding: 4rem 1rem 4rem 1rem;
    }
    
    .achievements-content {
        padding: 3rem 2rem;
    }
    
    .achievements-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .achievements-slider {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        position: relative;
    }
    
    .achievements-container {
        max-width: 100%;
        order: 1;
        height: 700px;
        width: 100%;
    }
    
    .achievement-card {
        padding: 2rem;
        height: 700px;
    }
    
    .achievement-year {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }
    
    .achievement-list {
        gap: 1.5rem;
    }
    
    .achievement-category h4 {
        font-size: 1.3rem;
    }
    
    .achievement-category li {
        font-size: 0.9rem;
    }
    
    .achievements-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        cursor: pointer;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        z-index: 10;
    }
    
    .achievements-slider-btn.prev-btn {
        left: 10px;
    }
    
    .achievements-slider-btn.next-btn {
        right: 10px;
    }
    
    .achievements-slider-btn:hover,
    .achievements-slider-btn:active {
        background: rgba(0, 195, 255, 0.9);
        border-color: #00c3ff;
        transform: translateY(-50%) scale(1.1);
    }
    
    .achievements-slider-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: translateY(-50%);
    }
    
    .achievements-slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Убираем горизонтальную прокрутку - используем только стрелочки */
    .achievements-container {
        overflow: hidden;
        display: block;
        width: 100%;
        padding: 0 1rem;
        height: 700px;
    }
    
    .achievement-card {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease;
        pointer-events: none;
        height: 700px;
        overflow: hidden;
    }
    
    .achievement-card.active {
        position: relative;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
    
    .achievement-card.prev {
        opacity: 0;
        transform: translateX(-100%);
        pointer-events: none;
    }
    
    .achievement-card.next {
        opacity: 0;
        transform: translateX(100%);
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .achievements-section {
        padding: 3rem 0.5rem 3rem 0.5rem;
    }
    
    .achievements-content {
        padding: 2rem 1.5rem;
    }
    
    .achievements-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .achievement-card {
        padding: 1.5rem;
        height: 600px;
        overflow: hidden;
    }
    
    .achievement-year {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .achievement-category h4 {
        font-size: 1.2rem;
    }
    
    .achievement-category li {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}
/* Team page social section positioning */
.achievements-section + .social-section {
    margin-top: -20px;
    position: relative;
    z-index: 10;
    background: #000000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.achievements-section + .social-section .social-content {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 20px;
    padding: 4rem 3rem;
    backdrop-filter: blur(10px);
}