    .page-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 60px;
        background: linear-gradient(90deg, #fff, #1fa5fd);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
        display: inline-block;
    }

    .page-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #1fa5fd, #0dcaf0);
        border-radius: 2px;
    }

    .page-subtitle {
        position: relative;
        font-size: 1.5rem;
        color: #1fa5fd;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        padding: 20px 40px;
        border-radius: 16px;
        background: rgba(31, 165, 253, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        border: 1px solid rgba(31, 165, 253, 0.2);
        box-shadow:
            0 10px 30px rgba(31, 165, 253, 0.1),
            inset 0 0 20px rgba(31, 165, 253, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-subtitle::before {
        content: '';
        position: absolute;
        right: -15px;
        top: -15px;
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #1fa5fd, #0dcaf0);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(31, 165, 253, 0.3);
    }

    /* Add icons using data attributes */
    .page-subtitle[data-icon]::before {
        font-family: "Font Awesome 6 Free";
        color: white;
        font-weight: 900;
        font-size: 1.2rem;
        position: absolute;
        right: -15px;
        top: -15px;
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #1fa5fd, #0dcaf0);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(31, 165, 253, 0.3);
    }

    .page-subtitle[data-icon="question"]::before {
        content: '\f059';
    }

    .page-subtitle[data-icon="info"]::before {
        content: '\f05a';
    }

    .page-subtitle[data-icon="magic"]::before {
        content: '\e2ca';
    }

    .page-subtitle::before::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg,
                transparent 45%,
                rgba(255, 255, 255, 0.15) 48%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0.15) 52%,
                transparent 55%);
        transform: translateX(-100%);
    }

    @media (max-width: 768px) {
        .page-title {
            font-size: 2.5rem;
        }

        .page-subtitle {
            font-size: 1.3rem;
            padding: 15px 30px;
            margin: 0 20px;
        }
    }

    /* Добавляем разделители секций */
    .section-divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(31, 165, 253, 0.2), transparent);
        margin: 60px 0;
    }

    .hero-section {
        padding-bottom: 3rem;
        position: relative;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        pointer-events: none;
    }

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

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 24px;
        box-shadow: 1px 12px 25px rgba(0, 0, 0, 0.78);
        border: solid 1px rgba(255, 255, 255, 0.2);
    }
    .hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 600px;
    margin: 0px auto 50px;
    aspect-ratio: 16/9;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}


    /* Add a subtle rotating background effect */
    .hero-content::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(90deg,
                rgba(31, 165, 253, 0.1),
                rgba(13, 202, 240, 0.1),
                rgba(31, 165, 253, 0.1));
        border-radius: 24px;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask-composite: xor;
    }

    /* Adjust glow for better mobile performance */
    @media (max-width: 768px) {
        .hero-content {
            animation: glow 4s ease-in-out infinite alternate;
        }
    }

    .hero-text p{
        font-size: 1.25rem;
        line-height: 1.8;
        color: #c1d1e9;
        position: relative;
        padding: 40px;
        text-align: center;
    }

    @media (max-width: 768px) {
        .hero-section {
            padding: 20px 0;
        }

        .hero-text {
            font-size: 1.1rem;
            padding: 25px;
        }
        .personal-grid{
            grid-template-columns: repeat(1, 1fr);
        }
    }

    /*Стили повторяются из catalo_product_card_block*/
    .page-cards-settings {
        padding: 40px 0;
        max-width: 1440px;
        margin: 0 auto;
    }

    .page-card-settings {
        background: linear-gradient(145deg, rgba(9, 16, 26, 0.95) 0%, rgba(9, 16, 72, 0.95) 100%);
        border: 1px solid rgba(31, 165, 253, 0.1);
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        text-decoration: none;
        position: relative;
        height: 100%;
    }

    .page-card-settings::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: linear-gradient(145deg, rgba(31, 165, 253, 0.1), rgba(13, 202, 240, 0.1));
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .page-card-settings:hover {
        transform: translateY(-8px);
        border-color: rgba(31, 165, 253, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .page-card-settings:hover::after {
        opacity: 1;
    }

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

    .page-card-settings:hover .card-image-settings img {
        transform: scale(1.1);
    }

   
    /* Responsive Breakpoints */
    @media (max-width: 1200px) {
        .cards-grid-settings {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .page-cards-settings {
            padding: 20px 0;
        }

        .cards-grid-settings {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 20px;
        }

        .card-content-settings {
            padding: 20px;
        }

        .card-title-settings {
            font-size: 1.25rem;
        }
    }

    /* Обновленные стили для карточек */
    .page-cards-settings {
        padding: 60px 0;
        max-width: 1440px;
        margin: 0 auto;
    }

    .cards-grid-settings {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 30px;
        padding: 0 20px;
    }

    /* Стандартная карточка */
    .page-card-settings {
        grid-column: span 4;
        min-height: 400px;
    }

    /* Широкая карточка */
    .page-card-settings.wide {
        grid-column: span 8;
    }

    /* Высокая карточка */
    .page-card-settings.tall {
        min-height: 500px;
    }

    /* Выделенная карточка */
    .page-card-settings.featured {
        grid-column: span 6;
        background: linear-gradient(145deg, rgba(31, 165, 253, 0.1) 0%, rgba(13, 202, 240, 0.1) 100%);
        border-color: rgba(31, 165, 253, 0.2);
    }

    /* Горизонтальная карточка */
    .page-card-settings.horizontal {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column: span 12;
        gap: 30px;
    }

    .page-card-settings.horizontal .card-image-settings {
        height: 100%;
        padding-top: 0;
    }

    .page-card-settings.horizontal .card-content-settings {
        padding: 40px;
    }

    /* Медиа запросы */
    @media (max-width: 1200px) {

        .page-card-settings,
        .page-card-settings.featured {
            grid-column: span 6;
        }

        .page-card-settings.horizontal {
            grid-column: span 12;
        }
    }

    @media (max-width: 768px) {

        .page-card-settings,
        .page-card-settings.featured,
        .page-card-settings.wide {
            grid-column: span 12;
        }

        .page-card-settings.horizontal {
            grid-template-columns: 1fr;
        }

        .page-card-settings.horizontal .card-image-settings {
            padding-top: 56.25%;
        }
    }


/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #fff, #1fa5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(31, 165, 253, 0.05);
    border: 1px solid rgba(31, 165, 253, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(31, 165, 253, 0.1);
    border-color: rgba(31, 165, 253, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.faq-question i {
    color: #1fa5fd;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
    opacity: 1;
}

.faq-answer p {
    color: #8b9bb4;
    line-height: 1.6;
    margin: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

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

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