/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.5;
}

/* Fixed Header and Navigation */
header, nav {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #0A0A0A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header {
    top: 0;
}

nav {
    position: fixed;
    top: 89px;
    left: 0;
    right: 0;
    background-color: #0A0A0A;
    padding: 15px 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Add padding to main content to account for fixed header and nav */
main {
    padding-top: 160px;
}

/* Adjust header and nav for mobile */
@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    
    nav {
        top: 76px;
    }
    
    main {
        padding-top: 120px;
    }
}

/* Header styles */
header {
    padding: 20px 0;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 43px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link i {
    font-size: 24px;
}

.social-link:hover {
    color: #0066CC;
}

.consultation-btn {
    background-color: transparent;
    border: 2px solid #0066CC;
    color: #FFFFFF;
    padding: 10px 17px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.consultation-btn:hover {
    background-color: #0066CC;
}

.consultation-btn.large {
    padding: 10px 25px;
    font-size: 16px;
}

/* Navigation styles */
nav {
    padding: 20px 0;
    background-color: #222;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.main-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.main-menu a i {
    font-size: 18px;
    color: lightsteelblue;
    transition: color 0.3s;
}

.main-menu a:hover,
.main-menu a.active {
    color: #0066CC;
}

.main-menu a:hover i,
.main-menu a.active i {
    color: #0066CC;
}

/* Navigation menu China flag */
.main-menu a img[src*="cn-flag"] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-radius: 50%;
}

/* Navigation menu Europe flag */
.main-menu a img[src*="eu-flag"] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-radius: 50%;
}

/* Navigation menu Korea flag */
.main-menu a img[src*="kr-flag"] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-radius: 50%;
}

/* Partners section Europe flag */
.partners-text img[src*="eu-flag"] {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Partners section Korea flag */
.partners-text img[src*="kr-flag"] {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Section Styling */
section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    border-bottom: 0;
    padding-bottom: 100px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 80%;
    background-image: url('images/BMW_X5_40i.jpg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-china::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 80%;
    background-image: url('images/zeekr-main.jpg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-europe::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 80%;
    background-image: url('images/audi-main.jpg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-korea::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 80%;
    background-image: url('images/genesis-main.jpg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
    margin-left: 0;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-content .consultation-btn.large {
    padding: 15px 35px;
    font-size: 18px;
}

.features {
    margin-top: 50px;
    display: flex;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text span:first-child {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.feature-text span:last-child {
    font-weight: 500;
}

.hero-image img {
    width: 116%;
    margin-left: -60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Benefits section styles */
.benefits {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 100px;
}

.benefits h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 10px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    transition: transform 0.3s, background-color 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.benefit-icon i {
    font-size: 40px;
    color: #FFFFFF;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-cta {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.benefits-cta .consultation-btn.large {
    display: inline-block;
    padding: 15px 20px;
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.benefits-cta .consultation-btn.large:hover {
    background-color: #0052a3;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits h2 {
        font-size: 28px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-content h3 {
        font-size: 18px;
    }
}

/* Premium cars section styles */
.premium-cars {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.premium-cars h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.car-card h3 {
    font-size: 22px;
    font-weight: 700;
    padding: 15px 0 10px 20px;
    margin: 0;
}

.price {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-usa {
    margin-bottom: 10px;
}

.price .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-right: 5px;
}

.price .amount {
    font-size: 24px;
    font-weight: 600;
    color: green;
}

/* Стили для цены в долларах в скобках */
.price .dollar-price {
    color: #ddd;
    font-size: 15px;
    font-weight: 700;
}

.price .crossed {
    text-decoration: line-through;
    color: darkred;
    font-size: 18px;
}

.price .description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price .description .country-flag {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
}

.price .description i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.car-specs {
    padding: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.spec-label i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.spec-value {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 12px;
}

/* Responsive adjustments for premium cars */
@media (max-width: 1024px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-cars h2 {
        font-size: 28px;
    }

    .cars-grid {
        grid-template-columns: 1fr;
    }

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

    .price .amount {
        font-size: 20px;
    }
}

/* Why Us section styles */
.why-us {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.why-us h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-item {
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.advantage-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.09);
}

.advantage-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.advantage-header i {
    font-size: 24px;
    color: var(--accent-color);
}

.advantage-item h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 0;
}

.advantage-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive adjustments for why-us section */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-us h2 {
        font-size: 28px;
        text-align: center;
    }

    .advantage-item {
        padding: 20px;
    }

    .advantage-item h3 {
        font-size: 18px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .advantage-icon i {
        font-size: 20px;
    }
}

/* Pricing section styles */
.pricing {
    display: none;
}

.pricing h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 40px;
    transition: transform 0.3s;
    position: relative;
}

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

.pricing-card.featured {
    background-color: #0066CC;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 30px;
}

.featured .price-amount {
    color: #FFFFFF;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
}

.features-list li.active::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066CC;
    font-weight: bold;
}

.featured .features-list li.active::before {
    color: #FFFFFF;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #0066CC;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s;
}

.pricing-btn:hover {
    background-color: #0066CC;
}

.featured .pricing-btn {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #0066CC;
}

.featured .pricing-btn:hover {
    background-color: transparent;
    color: #FFFFFF;
}

/* Responsive adjustments for pricing section */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .pricing h2 {
        font-size: 28px;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px;
    }

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

    .price-amount {
        font-size: 28px;
    }
}

/* Order Process section styles */
.order-process {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.order-process h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.process-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-steps {
    position: relative;
    padding: 40px 0;
}

.step-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 50px;
}

.step-labels.bottom {
    margin-top: 30px;
    margin-bottom: 0;
}

.step-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 150px;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, 
        #0066CC 0%,
        #2E80D1 16.66%,
        #5599D6 33.33%,
        #7CB3DB 50%,
        #A3CCE0 66.66%,
        #CAE6E5 83.33%,
        #F0FFFF 100%
    );
    z-index: 1;
}

.timeline-step {
    position: relative;
    width: 80px;
    height: 40px;
    background-color: #0066CC;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%, 20% 50%);
    z-index: 2;
}

.timeline-step[data-step="1"] { background-color: #F0FFFF; color: #0A0A0A; }
.timeline-step[data-step="2"] { background-color: #CAE6E5; color: #0A0A0A; }
.timeline-step[data-step="3"] { background-color: #A3CCE0; }
.timeline-step[data-step="4"] { background-color: #7CB3DB; }
.timeline-step[data-step="5"] { background-color: #5599D6; }
.timeline-step[data-step="6"] { background-color: #2E80D1; }
.timeline-step[data-step="7"] { background-color: #0066CC; }

.process-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments for order process */
@media (max-width: 1024px) {
    .step-label {
        font-size: 14px;
    }

    .timeline-step {
        width: 70px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .order-process h2 {
        font-size: 28px;
        text-align: center;
    }

    .step-labels {
        padding: 0 20px;
    }

    .step-label {
        font-size: 12px;
    }

    .timeline-step {
        width: 60px;
        height: 35px;
        font-size: 11px;
    }

    .process-image {
        height: 300px;
    }
}

/* About Us section styles */
.about-us {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.09);
    border-radius: 15px 15px 0 0;
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.partners-info {
    ackground-color: #000;
    border-radius: 0 0 30px 30px;
    padding: 40px;
    border: 1px solid #333;
}

.partners-text {
    text-align: center;
}

.partners-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.partners-stat {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.partners-stat .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.partners-stat .stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments for about section */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .about-us h2 {
        font-size: 28px;
    }

    .stats-grid {
        padding: 20px;
    }

    .stats-number {
        font-size: 36px;
    }

    .partners-info {
        padding: 20px;
    }

    .partners-text h3 {
        font-size: 20px;
    }

    .partners-stat .stat-number {
        font-size: 36px;
    }

    .partners-stat .stat-label {
        font-size: 16px;
    }
}

/* FAQ section styles */
.faq {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.faq h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding-right: 40px;
}

.toggle-btn {
    position: relative;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
}

.toggle-btn::before {
    content: '\f067';  /* Plus icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, color 0.3s ease;
}

.toggle-btn.active::before {
    content: '\f068';  /* Minus icon */
    color: #0066CC;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.faq-answer.show {
    max-height: 500px;
    padding-bottom: 40px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Social Updates section styles */
.social-updates {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
    padding-bottom: 100px;
}

.social-updates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.updates-text h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.updates-text .highlight {
    color: #0066CC;
}

.updates-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.social-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links-large {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links-large .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.09);
    border-radius: 30px;
    text-decoration: none;
    color: #FFFFFF;
    transition: transform 0.3s, background-color 0.3s;
}

.social-links-large .social-link:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.05);
    color: #0066CC;
}

.social-links-large .social-link i {
    font-size: 24px;
}

.social-links-large .social-link span {
    font-weight: 500;
}

.follow-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.updates-image {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.updates-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments for social updates */
@media (max-width: 1024px) {
    .social-updates-content {
        grid-template-columns: 1fr;
    }

    .updates-text {
    }

    .social-stats {
        justify-content: center;
    }

    .social-links-large {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .social-updates h2 {
        font-size: 28px;
    }

    .updates-text p {
        font-size: 16px;
    }

    .social-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    .social-links-large .social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive adjustments for FAQ section */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer.show {
        padding-bottom: 30px;
    }
}

/* Modal Consultation Form */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #0A0A0A;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #fff;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.phone-prefix i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.country-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.phone-input-wrapper input {
    background: none;
    border: none;
    color: #fff;
    padding: 12px 15px;
    width: 100%;
    font-size: 16px;
    outline: none;
}

.phone-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    background-color: #0066CC;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0052a3;
}

.privacy-policy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.4;
}

.privacy-link {
    color: #0066CC;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 30px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-description {
        font-size: 14px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0066CC;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Remove the rotation transform */
.back-to-top svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 60px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 16px;
        height: 16px;
    }
}

/* Social icons styles */
.social-links i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.social-links a:hover i {
    color: #0066CC;
}

.social-links-large i {
    font-size: 24px;
}

/* Toggle button icon */
.toggle-btn {
    position: relative;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
}

.toggle-btn::before {
    content: '\f067';  /* Plus icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, color 0.3s ease;
}

.toggle-btn.active::before {
    content: '\f068';  /* Minus icon */
    color: #0066CC;
}

/* Back to top button icon */
.back-to-top i {
    font-size: 20px;
    color: #fff;
}

@media (max-width: 768px) {
    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .advantage-icon i {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .main-menu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding: 0;
        margin: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
    }

    .main-menu::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(to right, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
        pointer-events: none;
    }

    .main-menu::-webkit-scrollbar {
        display: none;
    }

    .main-menu li {
        display: inline-block;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .main-menu li:first-child {
        margin-left: 20px;
    }

    .main-menu a {
        padding: 10px 0;
        display: inline-block;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    
    @media (max-width: 768px) {
        .logo img {
            height: 28px;
            margin-top: 1px;
        }
    }
    
    .contact-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .phone {
        font-size: 16px;
    }
    @media (max-width: 768px) {
        .phone {
            font-size: 16px;
            letter-spacing: -2px;
        }
    }
    .social-links {
        display: none;
    }
    
    .consultation-btn {
        display: none;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 16px;
        margin: 20px 0;
    }
    
    .features {
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 50px;
    }
    
    .feature {
        flex: 1;
        max-width: 150px;
    }
}

/* Add padding to main content to account for fixed header */
main {
    padding-top: 150px;
}

/* Adjust header for mobile */
@media (max-width: 768px) {
    header {
        padding: 20px 0;
    }
    
    main {
        padding-top: 120px;
    }
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts h2 {
    font-size: 34px;
    margin-bottom: 50px;
    text-align: left;
    color: #FFFFFF;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contacts-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #FFFFFF;
}

.contact-item i {
    font-size: 24px;
    color: #0066CC;
}

.contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #0066CC;
}

.office-hours,
.support-hours {
    margin-top: 20px;
}

.office-hours h3,
.support-hours h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.office-hours p,
.support-hours p {
    font-size: 16px;
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

.contacts .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contacts .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transition: all 0.3s;
}

.contacts .social-link:hover {
    background-color: rgba(255, 255, 255, 0.09);
    color: #0066CC;
    border-color: #0066CC;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: #0A0A0A;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contacts-content {
        grid-template-columns: 1fr;
    }

    .contacts h2 {
        font-size: 28px;
    }

    .contacts-map {
        height: 300px;
    }
}

.phone-dropdown {
    position: relative;
    display: inline-block;
}

.phone-wrapper {
    display: flex;
    align-items: center;
}

.phone-dropdown .phone {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.phone-dropdown .phone:hover {
    color: rgba(255, 255, 255, 0.8);
}

.phone-dropdown .phone i {
    font-size: 16px;
}

.dropdown-icon {
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.dropdown-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-icon i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.phone-dropdown:hover .dropdown-icon i {
    transform: rotate(180deg);
}

.phone-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(10, 10, 10, 0.95);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    left: 0;
    padding: 4px 0;
}

.phone-dropdown:hover .dropdown-content {
    display: block;
}

.phone-dropdown .dropdown-content a {
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    white-space: nowrap;
}

.phone-dropdown .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .phone-dropdown .phone {
        font-size: 13px;
        padding: 8px 0px;
    }

    .phone-dropdown .dropdown-content {
        min-width: 168px;
        padding: 4px 0;
        font-size: 13px;
    }

    .phone-dropdown .dropdown-content a {
        min-width: 168px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 5px 0;
    }
}

@media (max-width: 768px) {
    .dropdown-icon {
        margin-left: 0;
        margin-right: -8px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 100px 0;
    }

    section:last-of-type {
        padding-bottom: 0;
    }

    .hero {
        padding-top: 0;
    }

    .hero::before {
        width: 100%;
        opacity: 0.5;
        background-color: rgba(0, 0, 0, 0.3);
        background-blend-mode: multiply;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Cooperation Section */
.cooperation {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.cooperation h2 {
    color: #fff;
    margin-bottom: 60px;
    font-size: 34px;
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 80px;
}

.cooperation-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.cooperation-item:hover {
    transform: translateY(-5px);
}

.cooperation-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cooperation-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.cooperation-item h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.cooperation-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.video-reviews {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-preview {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-reviews-text {
    color: #fff;
}

.video-reviews-text h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.video-reviews-text h3 i {
    color: #0066CC;
    margin-right: 10px;
    font-size: 22px;
}

.video-reviews-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #007BFF;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.video-btn:hover {
    background: #0056b3;
}

.video-btn i {
    font-size: 1.25rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .cooperation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-reviews-content {
        grid-template-columns: 1fr;
    }

    .video-preview {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .cooperation-grid {
        grid-template-columns: 1fr;
    }

    .cooperation h2 {
        font-size: 2rem;
        padding: 0 20px;
    }

    .video-reviews-text h3 {
        font-size: 1.5rem;
    }
}

/* Reviews Section */
.reviews {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.reviews::before,
.reviews::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.reviews::before {
    top: 0;
}

.reviews::after {
    bottom: 0;
}

.reviews h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 34px;
}

.reviews__swiper-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.reviews__swiper {
    overflow: hidden;
    padding: 20px 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
}

.reviews__block-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease;
    position: relative;
}

.reviews__block-wrap:hover {
    transform: translateY(-5px);
}

.reviews__user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviews__user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0066CC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews__user-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.reviews__user-name {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.reviews__block-text {
    flex: 1;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reviews__block-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 0.8);
}

.reviews__block-text.expanded {
    display: block;
    height: auto;
}

.reviews__block-text::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #0066CC;
    font-size: 22px;
}

.reviews__read-more {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    color: #0066CC;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.3s ease;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    text-align: left;
    white-space: nowrap;
}

.reviews__read-more::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    top: 2px;
}

.reviews__read-more.expanded::after {
    content: '\f106';
}

.reviews__read-more:hover {
    color: #FFFFFF;
}

.reviews__block-images-wrap {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #0066CC;
}

.swiper-button-next {
    right: -50px;
}

.swiper-button-prev {
    left: -50px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-pagination {
    position: relative;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #0066CC;
}

@media (max-width: 1300px) {
    .swiper-button-next {
        right: 10px;
    }
    
    .swiper-button-prev {
        left: 10px;
    }
}

@media (max-width: 992px) {
    .swiper-slide {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reviews h2 {
        font-size: 2rem;
        padding: 0 20px;
    }

    .reviews__block-wrap {
        padding: 20px;
    }

    .reviews__block-images-wrap {
        height: 160px;
    }
}

.conditions__item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.conditions__item-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

/* Delivery Section */
.delivery {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 50px;
    margin-bottom: 100px;
}

.delivery__title {font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;}

.delivery__block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.delivery__block-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-align: left;
}

.delivery__block-text {
    font-size: 16px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 40px;
}

.delivery__slide-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.country-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.delivery__slide-title span {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.delivery__slide-text {
    padding: 0;
    margin: 0;
    text-align: left;
    vertical-align: top;
}

.delivery__slide-text p {
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.delivery__slide-text p:last-child {
    margin-bottom: 0;
}

.delivery__swiper-wrap {
    position: relative;
    padding: 40px 0 0 0;
}

.delivery__swiper {
    overflow: hidden;
    padding-bottom: 30px;
}

.delivery__slide-wrap {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.delivery__slide-wrap:hover {
    transform: translateY(-5px);
}

.delivery__slide-content {
    margin-bottom: 30px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0066CC;
}

.car-delivery-cost {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.car-delivery-cost h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.cost-description {
    margin-bottom: 40px;
}

.cost-description h3 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.cost-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.cost-item {
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    padding: 15px 30px;
    color: #FFFFFF;
    font-weight: 500;
    transition: transform 0.3s, background-color 0.3s;
    cursor: default;
}

.cost-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.09);
}

.cost-calculation {
    margin-top: 40px;
}

.cost-calculation p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.telegram-link {
    color: #0066CC;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px solid;
    padding-bottom: 3px;
    font-weight: 600;
}

.telegram-link:hover {
    color: #0052a3;
}

@media (max-width: 768px) {
    .car-delivery-cost h2 {
        font-size: 28px;
    }

    .cost-items {
    }

    .cost-item {
        font-size: 14px;
        padding: 12px 24px;
    }

    .cost-calculation p {
        font-size: 16px;
    }
}

.how-we-work {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.how-we-work h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.work-step {
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, background-color 0.3s;
}

.work-step:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.09);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066CC;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.step-content {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.step-content a {
    color: #0066CC;
    text-decoration: none;
    transition: color 0.3s;
}

.step-content a:hover {
    color: #0052a3;
}

@media (max-width: 768px) {
    .how-we-work h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .work-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-step {
        padding: 20px;
    }

    .step-title {
        font-size: 18px;
    }
}

.risks {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.risks h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
    text-align: center;
}

.risks__swiper-container {
    position: relative;
    padding: 0 60px;
}

.risks__slide {
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, background-color 0.3s;
}

.risks__slide:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.09);
}

.risks__slide-title {
    font-size: 24px;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 20px;
    text-align: center;
}

.risks__slide-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.risks__nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1;
}

.risks__nav-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.risks__nav-button.prev {
    left: 0;
}

.risks__nav-button.next {
    right: 0;
}

.risks__nav-button i {
    color: #FFFFFF;
    font-size: 20px;
}

@media (max-width: 768px) {
    .risks h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .risks__slide {
        padding: 20px;
    }

    .risks__slide-title {
        font-size: 20px;
    }

    .risks__slide-text {
        font-size: 14px;
    }
} 
.call-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .call-mobile {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 1000;
    }

    .call-mobile a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        background: #0066CC;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 500;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .call-mobile a i {
        margin-right: 8px;
        font-size: 18px;
    }

    .call-mobile a:hover {
        background: #0052a3;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .call-mobile .whatsapp-btn {
        background: #25D366;
    }

    .call-mobile .whatsapp-btn:hover {
        background: #1ea952;
    }

    @media (max-width: 480px) {
        .call-mobile {
            bottom: 15px;
        }
        
        .call-mobile a {
            padding: 10px 15px;
            font-size: 14px;
        }
    }
}

.metaMobile:before {
    font-family: FontAwesome;
    display: inline-block;
    content: "\f098";
    font-style: normal;
}

.metatag {
    width: 100%;
    background: #111;
    margin: 0 auto;
    padding-bottom: 30px;
    padding-top: 20px;
    padding-left: 30px;
    text-align: center;
    border-top: 1px solid #222;
}

.metatag a {
    border-bottom: 1px solid;
    text-decoration: none;
    padding-bottom: 3px;
}

.metatag img {
    margin-bottom: -12px;
}

@media only screen and (max-width : 640px) {
    .metatag {
        padding-bottom: 70px;
    }
}

/* Стили для блока доставки без слайдера */
.delivery-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 10px;
}

.delivery-text {
    flex: 1;
}

.delivery-text h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.delivery-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.delivery-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .delivery-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .delivery-image {
        align-self: center;
    }
    
    .delivery-text h3 {
        font-size: 20px;
    }
    
    .delivery-text p {
        font-size: 14px;
    }
}

/* Стили для цены в долларах в скобках */
.delivery-image .country-flag {
    width: 60px !important;
    height: 60px !important;
}

@media (max-width: 768px) {
    .delivery-image .country-flag {
        width: 60px !important;
        height: 60px !important;
    }
}
