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

:root {
    --border-radius: 8px;
    --card-background: #f8f9fa;
    --sk-body-text-color: #1d1d1f;
    --primary-color: #7C3AED;
    --accent: #7C3AED;
    --text-button: #fff;
    --text-button-rgb: 255, 255, 255;
    --dark-secondary: rgba(60, 60, 60, 0.6);
    --text-primary: #fff;
    --text-secondary: #6B7280;
    --sk-fill: #fff;
    --dark-light: rgba(60, 60, 60, 0.4);
    --promoaction: #ff2a38;
    --promoaction-blue: #0071e3;
    --promoaction-hot: #ff6f00;
    --promoaction-green: #34c759;
    --promoaction-purple: #244aa2;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    margin: 0;
    padding-top: 70px;
}

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



header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #6B46C1;
    text-decoration: none;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7C3AED;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.phone-number:hover {
    color: #7C3AED;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #7C3AED;
    color: white;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #7C3AED;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #7C3AED;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 50px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 20px 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(124, 58, 237,6px 15px rgba(124,58,237,0.1));
}

.mobile-nav-links a svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    background: #7C3AED;
    color: white;
    transform: translateX(10px);
}

.mobile-nav-links a:hover svg,
.mobile-nav-links a:active svg {
    stroke: white;
    fill: white;
}

.mobile-contact-info {
    padding: 0px 20px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    margin-top: 10px;
}

.mobile-phone {
    display: block;
    color: #7C3AED;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    padding: 15px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-phone:hover {
    background: #7C3AED;
    color: white;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.mobile-social-link:hover {
    background: #7C3AED;
    color: white;
    transform: translateY(-3px);
}

.mobile-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    display: none;
}

.mobile-menu.active .mobile-close-button {
    display: block;
}

.mobile-close-button svg {
    width: 24px;
    height: 24px;
    stroke: #7C3AED;
    transition: stroke 0.3s ease;
}

.mobile-close-button:hover svg {
 stroke: #fff;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: var(--border-radius, 8px);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--primary-color, #7C3AED);
    color: var(--text-button, #fff);
    border: none;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.btn-primary:hover {
    background: #6B46C1;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: #fff;
        color: #7C3AED;
        border: 2px solid #7C3AED;
        padding: 16px 32px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 160px;
    }
    

.btn-secondary-pricelist {
    background: #fff;
        color: #7C3AED;
        border: 2px solid #7C3AED;
        padding: 16px 32px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 160px;
    }

.btn-secondary-pricelist:hover {
        background: #8247e9;
        color: white;
        transform: translateY(-3px);
        /* box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); */
    }


.btn-secondary:hover {
        background: #8247e9;
        color: white;
        transform: translateY(-3px);
        /* box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); */
    }

.hero {
    margin-top: 0px;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('hero.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.advantages {
    padding: 20px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: #6B46C1;
    font-weight: 700;
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-item {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
}

.about-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(124,58,237,0.1);
}

.about-item svg {
    fill: #7C3AED;
    margin-bottom: 20px;
}

.about-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #6B46C1;
    font-weight: 600;
}

.about-item p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
}

.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.calculator-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculator-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.calculator-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.calculator-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E2E8F0;
    position: relative;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2D3748;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #F56565;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.checkbox-item {
    position: relative;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 2;
}

.checkbox-label {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: #F7FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.checkbox-label:hover {
    background: #EDF2F7;
    border-color: #CBD5E0;
    transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: #fff;
}

.checkbox-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.checkbox-text {
    font-weight: 500;
    font-size: 15px;
}

.form-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
/* Button Container */
.mobile-button-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}


.privacy-notice {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

.privacy-notice a {
    color: #667eea;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.calculation-result {
    background: linear-gradient(135deg, #48BB78, #38A169);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
    display: none;
}

.result-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-details {
    font-size: 14px;
    opacity: 0.9;
}

.price {
    padding: 10px 0;
    background: #FAFBFF;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.price-table {
    display: none;
    margin-top: 40px;
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.price-table.active {
    display: table;
}

.price-table th,
.price-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.price-table th {
    background: #7C3AED;
    color: #fff;
}

.price-table tr:hover {
    background: #F3E8FF;
}



.price-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(124,58,237,0.15);
}

.price-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.price-card h3 {
    font-size: 18px;
    color: #6B46C1;
    font-weight: 600;
}

.section-title-pricelist {
    text-align: center;
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #6B46C1;
    font-weight: 700;
}
.section-title-reviews{
    text-align: center;
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #6B46C1;
    font-weight: 700;
}

.section-title-faq{
    text-align: center;
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #6B46C1;
    font-weight: 700;
}
.button-container {
    display: flex;
    justify-content: center;
    /* min-width: 600px; */
    gap: 16px; /* Minimal gap as specified */
    margin: 40px 0;
}


.phone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px; /* Space between phone numbers */
    padding: 16px;
    max-width: 300px; /* Constrain width for consistency */
    margin: 0 auto; /* Center the container */
}

.btn-primary-pricelist {
    padding: 16px 2px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px; /* Reduced from 160px to allow buttons to be closer */
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    background: var(--primary-color);
    color: var(--text-button);
    border: none;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    margin: 0; /* Override any default or inherited margins */

}
.section-pricelist-button {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 32px;
            color: #333;
            
        }

.btn-primary-pricelist:hover {
    background: #6B46C1;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

.price-card .price {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0px;
    color: #7C3AED;
}

.services {
    padding: 40px 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    padding: 25px;
    background: #F8FAFC;
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(124,58,237,0.1);
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #7C3AED;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #6B46C1;
    font-weight: 600;
}

.step-card p {
    color: #6B7280;
    line-height: 1.6;
}

.reviews {
    padding: 20px 0;
    background: #FAFBFF;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(124,58,237,0.15);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(124,58,237,0.2);
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-weight: 600;
    color: #6B46C1;
    margin-bottom: 2px;
}

.review-position {
    font-size: 14px;
    color: #6B7280;
}

.review-text {
    font-style: italic;
    color: #4B5563;
    line-height: 1.6;
    font-size: 16px;
}

.review-footer {
    text-align: center;
    margin-top: 40px;
}

.review-footer p {
    margin-bottom: 20px;
    color: #6B7280;
    font-size: 16px;
}

.gallery {
    padding: 60px 0;
    background: #fff;
}

.gallery-masonry {
    columns: 4;
    column-gap: 12px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .gallery-masonry {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .gallery-masonry {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Left and right columns */
        grid-template-rows: repeat(3, auto); /* Three rows for right side */
        gap: 12px;
        max-height: 100vh; /* Fit within viewport height */
        overflow: hidden;
        margin-top: 0; /* Remove margin for tighter fit */
    }
    .gallery-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 4; /* First image spans three rows on left */
        max-height: 100vh; /* Full height for left image */
    }
    .gallery-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2; /* Second image in top-right */
        max-height: 33.33vh; /* 1/3 height for right images */
    }
    .gallery-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3; /* Third image in middle-right */
        max-height: 33.33vh; /* 1/3 height for right images */
    }
    .gallery-item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 3 / 4; /* Fourth image in bottom-right */
        max-height: 33.33vh; /* 1/3 height for right images */
        position: relative;
    }
    .gallery-item:nth-child(n+5) {
        display: none; /* Hide images beyond the fourth */
    }
    .gallery-item img {
        object-fit: cover; /* Scale images to fit */
        height: 100%; /* Fill container height */
        width: 100%;
    }
    .gallery-item:nth-child(4)::after {
        content: 'Посмотреть больше';
        /* position: absolute; */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        border-radius: var(--border-radius);
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    .gallery-item:nth-child(4):hover::after {
        opacity: 0.8;
    }
    .gallery-masonry.show-all {
        display: block; /* Revert to block for full gallery */
        columns: 1; /* Single column for all images */
        max-height: none; /* Remove height restriction */
    }
    .gallery-masonry.show-all .gallery-item {
        display: block;
        max-height: none; /* Allow natural height */
    }
    .gallery-masonry.show-all .gallery-item img {
        height: auto; /* Restore natural image height */
    }
    .gallery-masonry.show-all .gallery-item:nth-child(4)::after {
        display: none; /* Hide overlay when showing all */
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        gap: 8px; /* Smaller gap for smaller screens */
    }
}

.gallery-item {
            break-inside: avoid;
            margin-bottom: 12px;
            border-radius: var(--border-radius);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            background: #f5f5f5;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
        }

        .gallery-item img {
        width: 100%;
        display: block;
        border-radius: var(--border-radius);
        transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.02);
        }

        .gallery-item::after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: var(--border-radius);
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

.fullscreen-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.fullscreen-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-fullscreen {
    color: #fff;
    font-size: 32px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3001;
}

.close-fullscreen:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    user-select: none;
    z-index: 3001;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 30px;
}

.nav-next {
    right: 30px;
}

.image-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    z-index: 3001;
}

.loading {
    opacity: 0.5;
}

footer {
    background: #6B46C1;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #C4B5FD;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.social-links-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.social-link-footer:hover {
    background: #A855F7;
    transform: translateY(-2px);
    stroke: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: #C4B5FD;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #6B46C1;
    font-weight: 600;
}

.close {
    color: #9CA3AF;
    float: right;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    margin-top: -10px;
    transition: color 0.3s ease;
}

.close:hover {
    color: #6B46C1;
}

.faq-section {
    max-width: 1000px;
    margin: 20px auto;
    padding: 10px 5px;
}

.faq-item {
    background: #F3E8FF;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-title {
    padding: 20px;
    font-size: 18px;
    background: #f8f9fa;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-title:hover {
    background-color: rgba(255,140,0,0.1);
}

.faq-title::after {
    content: '+';
    font-size: 24px;
    color: #7C3AED;
}

.faq-item.active .faq-title::after {
    content: '-';
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    text-align: left;
    font-size: 16px;
}

.faq-content p {
    margin: 0 0 10px 0;
    padding-left: 20px;
}

.faq-content ul {
    margin: 0;
    padding-left: 40px;
}

.faq-content li {
    margin-bottom: 5px;
    
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 20px;
}

.telegram-download {
    color: #7C3AED;
    text-decoration: underline;
}

.telegram-download:hover {
    text-decoration: none;
}

.contact-section {
    padding: 15px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

#map {
    width: 100%;
    height: 100%;
}

.ol-attribution {
    display: none !important;
}

.contact-info {
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 22px;
    color: #6B46C1;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.news-section {
    padding: 20px 0;
    padding-bottom: 60px;
    position: relative;
}

.news-container {
    display: flex;
    margin-left: 10px;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
}

.news-container::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 420px;
    height: 360px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-read-more {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent);
    color: var(--text-button);
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.news-card:hover .news-read-more {
    background-color: #6B46C1;
}

.news-read-more:hover {
    background-color: #A855F7;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 2;
}

.news-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    color: #ffffff;
}

.news-date {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

.nav-arrow-news {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--dark-secondary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-section:hover .nav-arrow-news {
    opacity: 1;
}

.nav-arrow-news.prev {
    left: 13%;
}


.nav-arrow-news.next {
    right: 13%;
}

.nav-arrow-news:hover{
    background-color: #979797;
}


.nav-arrow-news:disabled {
    background-color: var(--dark-light);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.5;
}

.advan-offer-section {
        padding: 20px 0;
        padding-bottom: 60px;
        position: relative;
    }

    .advan-offer-section:hover .advan-offer-nav-arrow {
        opacity: 1;
    }

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

    .section-title {
        text-align: center;
        font-size: 36px;
        margin-bottom: 10px;
        color: var(--accent);
        font-weight: 700;
    }

    .advan-offer-nav-arrow {
        position: absolute;
        top: 55%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: var(--dark-secondary);
        border: none;
        border-radius: 50%;
        color: var(--text-primary);
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: background-color 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .advan-offer-nav-arrow:hover {
        background-color: #979797;
    }

    .advan-offer-nav-arrow.prev {
        left: 14%;
    }

    .advan-offer-nav-arrow.next {
        right: 14%;
    }

    .advan-offer-nav-arrow:disabled {
        background-color: var(--dark-light);
        color: var(--text-secondary);
        cursor: not-allowed;
        opacity: 0.5;
    }

    .advan-offer-container {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
        margin-top: 20px;
        padding: 0 10px;
        scroll-snap-type: x mandatory;
    }

    .advan-offer-container::-webkit-scrollbar {
        display: none;
    }

    .advan-offer-card {
        flex: 0 0 320px;
        height: 200px;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        scroll-snap-align: start;
    }

    .advan-offer-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(124,58,237,0.15);
    }

    .advan-offer-card:hover .advan-offer-read-more {
        background-color: #6B46C1;
    }

    .advan-offer-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .advan-offer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
        z-index: 2;
    }

    .advan-offer-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 3;
        color: #ffffff;
    }

    .advan-offer-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
        margin-top: 20px;
        line-height: 1.3;
        text-transform: uppercase;
        color: #ffffff;
    }

    .advan-offer-description {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px;
        color: #ffffff;
        opacity: 0.8;
    }

    .advan-offer-read-more {
        display: inline-block;
        padding: 8px 16px;
        background-color: var(--accent);
        color: var(--text-button);
        border-radius: 6px;
        font-weight: 500;
        text-decoration: none;
        transition: background-color 0.2s ease;
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    .advan-offer-read-more:hover {
        background-color: #A855F7;
    }

    .advan-offer-badge-container {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        gap: 5px;
        z-index: 4;
    }

    .advan-offer-badge {
        background-color: var(--promoaction);
        color: var(--text-primary);
        padding: 3px 8px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: bold;
    }

    .advan-offer-badge.blue {
        background-color: var(--promoaction-blue);
    }

    .advan-offer-badge.green {
        background-color: var(--promoaction-green);
    }

    .advan-offer-badge.purple {
        background-color: var(--promoaction-purple);
    }

    .advan-offer-badge.hot {
        background-color: var(--promoaction-hot);
    }

    /* Modal Styles */
/* Modal Styles */
.modal-advan-offer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-advan-offer-content {
    background-color: var(--sk-fill);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    padding: 20px;
    position: relative;
    color: var(--sk-body-text-color);
}

.modal-advan-offer-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--sk-body-text-color);
}

.modal-advan-offer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent);
}

.modal-advan-offer-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.modal-advan-offer-button-container {
    display: flex;
    justify-content: center;
}

.btn-primary-modal {
    padding: 16px 2px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    background: var(--primary-color);
    color: var(--text-button);
    border: none;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    margin: 0;
}

.btn-primary-mobile{

    padding: 16px 2px;
    border-radius: 14px;
    /* margin-left: 50%; */
    /* font-weight: 800; */
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    background: var(--primary-color);
    color: var(--text-button);
    border: none;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    margin: 0;

}

@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }
    .container h2{
        font-size: 24px;
    }
    nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    .nav-links,
    .header-right {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .container {
        padding: 0 15px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .calculator-section {
        padding: 60px 0;
    }
    .calculator-title {
        font-size: 32px;
        margin-top: 0px;
    }
    .calculator-form {
        padding: 30px 20px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary-pricelist{
        background: var(--primary-color);
        color: var(--text-button);
        border-radius: var(--border-radius);
        border: none;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s ease;
        text-decoration: none;
        text-align: center;

    }




    .btn-primary, .btn-secondary {
        
        width: 100%;
        max-width: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 300px;
    }
    .news-card {
        flex: 0 0 300px;
        height: 320px;
    }
    .news-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    .mobile-nav-links a {
        font-size: 16px;
        padding: 12px 15px;
    }
    .mobile-phone {
        font-size: 18px;
    }
    .mobile-social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .mobile-close-button {
        top: 15px;
        right: 15px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    /* New styles for mobile horizontal scrolling */
@media (max-width: 768px) {
    .about-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        padding-bottom: 20px; /* Space for scrollbar */
        padding-right: 15px;
    }

    .about-item {
        flex: 0 0 80%; /* Each item takes 80% of the container width */
        margin-right: -15px; /* Space between items */
        scroll-snap-align: center; /* Snap items to center */
    }

    /* Hide scrollbar for aesthetics but keep functionality */
    .about-grid::-webkit-scrollbar {
        display: none;
    }

    .about-grid {
        -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
        scrollbar-width: none; /* Hide scrollbar in Firefox */
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* Ensure two columns on mobile */
        gap: 15px; /* Reduced gap for mobile */
    }
    
    .step-card {
        padding: 15px; /* Reduced padding to decrease height */
        height: 250px; /* Fixed height to fit content */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .step-number {
        font-size: 18px; /* Smaller font size */
        margin-bottom: 8px; /* Reduced margin */
    }

    .step-card h3 {
        font-size: 16px; /* Smaller heading */
        margin-bottom: 6px; /* Reduced margin */
    }

    .step-card p {
        font-size: 13px; /* Smaller text */
        line-height: 1.3; /* Tighter line height */
        overflow: hidden; /* Prevent text overflow */
        text-overflow: ellipsis; /* Add ellipsis for overflowing text */
        /* display: -webkit-box; */
        -webkit-line-clamp: 4; /* Limit to 4 lines */
        -webkit-box-orient: vertical; /* Required for line clamping */
    }

    .name-pricelist .descreption-pricelist .td {
        font-size: 14px; /* Уменьшенный размер шрифта для мобильных */
        padding: -2px; /* Уменьшаем отступы, чтобы сократить занимаемое место */
        
    }
    .price-table td.name-pricelist,
    .price-table td.descreption-pricelist {
        width: 10%; /* Ограничиваем ширину столбца */
    }

    .price-table td.name-pricelist td.descreption-pricelist {
        width: 10%; /* Ограничиваем ширину столбца */
    }

    .price-table {
        display: none ; /* Убираем таблицу даже при классе active */
    }
    .price-table th,
    .price-table td {
        font-size: 14px; /* Уменьшаем шрифт для мобильных */
        padding: 8px; /* Уменьшаем отступы */
    }
    
    .price-table td {
        width: auto; /* Сбрасываем фиксированную ширину для адаптивности */
    }

    .price-table td:last-child {
        width: 100px; /* Фиксированная ширина для столбца с ценой */
        white-space: normal; /* Разрешаем перенос текста */
        line-height: 1.2; /* Уменьшаем высоту строки для компактности */
    }

    /* Сетка карточек: 2 карточки в ряд */
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
    }
    
    /* Стили для карточек на мобильных */
    .price-card {
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid #E5E7EB;
    }

    /* Скрываем изображения на мобильных */
    .price-card img {
        width: 120px;
        height: 120px;
    }
    
    /* Показываем карточки только для мобильной версии */
    .price-card.mobile-only {
        display: block;
    }
    
    /* Стили для заголовков в карточках */
    .price-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .price-card p {
        font-size: 13px;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Ограничиваем описание 3 строками */
        -webkit-box-orient: vertical;
    }
    
    /* Стили для цены */
    .price-card .price {
        font-size: 16px;
    }

    .nav-arrow-news {
        display: none;
    }
    .nav-arrow {
        display: none;
    }

    .reviews-grid {
        gap:1px;
        margin-top: 5px;
    }


   
    
}



    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        .advan-offer-section {
            padding: 10px 0;
            padding-bottom: 30px;
        }

        .container {
            padding: 0 10px;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .advan-offer-container {
            padding: 0 5px;
            gap: 10px;
        }

        .advan-offer-card {
            flex: 0 0 240px;
            height: 160px;
        }

        .advan-offer-content {
            padding: 12px;
        }

        .advan-offer-title {
            font-size: 12px;
            margin-top: 12px;
            margin-bottom: 6px;
        }

        .advan-offer-description {
            font-size: 11px;
            margin-bottom: 6px;
        }

        .advan-offer-read-more {
            padding: 5px 10px;
            font-size: 11px;
        }

        .advan-offer-badge-container {
            top: 6px;
            right: 6px;
            gap: 3px;
        }

        .advan-offer-badge {
            padding: 2px 5px;
            font-size: 9px;
        }

        .advan-offer-nav-arrow {
            width: 32px;
            height: 32px;
            font-size: 14px;
            opacity: 1;
        }

        .advan-offer-nav-arrow.prev {
            left: 2px;
        }

        .advan-offer-nav-arrow.next {
            right: 2px;
        }

        .modal-advan-offer-content {
            width: 90%;
            padding: 12px;
        }

        .modal-advan-offer-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .modal-advan-offer-description {
            font-size: 13px;
        }

        .modal-advan-offer-close {
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .advan-offer-card {
            flex: 0 0 200px;
            height: 140px;
            border-radius: 16px;
        }
        .phone-number{
            margin-top: 2px;
        }

        .advan-offer-title {
            font-size: 11px;
        }

        .advan-offer-description {
            font-size: 10px;
        }

        .advan-offer-read-more {
            padding: 4px 8px;
            font-size: 10px;
        }

        .advan-offer-badge {
            font-size: 8px;
            padding: 1px 4px;
        }
    }



    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
    .advan-offer-section {
        padding: 10px 0;
        padding-bottom: 30px;
    }

    .container {
        padding: 0 10px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .advan-offer-container {
        padding: 0 5px;
        gap: 10px;
    }

    .advan-offer-card {
        flex: 0 0 400px; /* Увеличено с 340px до 400px */
        height: 300px; /* Увеличено с 260px до 300px */
    }

    .advan-offer-content {
        padding: 16px; /* Увеличено с 12px для баланса */
    }

    .advan-offer-title {
        font-size: 14px; /* Увеличено с 12px */
        margin-top: 14px; /* Увеличено с 12px */
        margin-bottom: 8px; /* Увеличено с 6px */
    }

    .advan-offer-description {
        font-size: 12px; /* Увеличено с 11px */
        margin-bottom: 8px; /* Увеличено с 6px */
    }

    .advan-offer-read-more {
        padding: 6px 12px; /* Увеличено с 5px 10px */
        font-size: 12px; /* Увеличено с 11px */
    }

    .advan-offer-badge-container {
        top: 8px; /* Увеличено с 6px */
        right: 8px; /* Увеличено с 6px */
        gap: 4px; /* Увеличено с 3px */
    }

    .advan-offer-badge {
        padding: 3px 6px; /* Увеличено с 2px 5px */
        font-size: 10px; /* Увеличено с 9px */
    }

    .advan-offer-nav-arrow {
        width: 36px; /* Увеличено с 32px */
        height: 36px; /* Увеличено с 32px */
        font-size: 16px; /* Увеличено с 14px */
        opacity: 1;
    }

    .advan-offer-nav-arrow.prev {
        left: 2px;
    }

    .advan-offer-nav-arrow.next {
        right: 2px;
    }

    .modal-advan-offer-content {
        width: 90%;
        padding: 12px;
    }

    .modal-advan-offer-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .modal-advan-offer-description {
        font-size: 15px;
    }

    .modal-advan-offer-close {
        font-size: 16px;
    }
}
    @media (max-width: 480px) {
        .advan-offer-card {
            flex: 0 0 240px;
            height: 190px;
        }

        .advan-offer-title {
            font-size: 14px;
        }

        .advan-offer-description {
            font-size: 12px;
        }

        .advan-offer-read-more {
            padding: 4px 8px;
            font-size: 14px;
        }

        .advan-offer-badge {
            font-size: 10px;
            padding: 1px 4px;
        }
        .advan-offer-nav-arrow{
            display: none;


        }
        .advantages {
            padding: 20px 0;
            /* background: #fff; */
        }
        .button-container {
                gap: 8px;
                flex-wrap: wrap; /* Allow wrapping if buttons are too wide */
            }

    }



    
}
