
    .page-6fff {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a1a;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-6fff__hero-section {
        position: relative;
        padding: 10px 20px 40px;
        text-align: center;
        background-color: #222;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .page-6fff__hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        margin-top: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        box-sizing: border-box !important;
    }

    .page-6fff__main-title {
        font-size: 2.5em;
        color: #ffcc00;
        margin-bottom: 15px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6fff__hero-description {
        font-size: 1.1em;
        max-width: 800px;
        margin-bottom: 30px;
        color: #ccc;
    }

    .page-6fff__hero-buttons {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .page-6fff__hero-button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.05em;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        white-space: nowrap;
    }

    .page-6fff__hero-button--register {
        background-color: #ffcc00;
        color: #333;
    }

    .page-6fff__hero-button--register:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-6fff__hero-button--login {
        background-color: #4CAF50;
        color: #fff;
    }

    .page-6fff__hero-button--login:hover {
        background-color: #45a049;
        transform: translateY(-2px);
    }

    .page-6fff__products-section,
    .page-6fff__promo-section,
    .page-6fff__why-choose-us-section,
    .page-6fff__faq-section,
    .page-6fff__contact-cta-section {
        padding: 60px 20px;
        text-align: center;
        background-color: #1a1a1a;
    }

    .page-6fff__section-title {
        font-size: 2em;
        color: #ffcc00;
        margin-bottom: 20px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6fff__section-description {
        font-size: 1.05em;
        max-width: 900px;
        margin: 0 auto 40px;
        color: #ccc;
    }

    .page-6fff__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-6fff__product-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;
        box-sizing: border-box;
    }

    .page-6fff__product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-6fff__product-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 20px;
        box-sizing: border-box !important;
    }

    .page-6fff__product-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin-bottom: 10px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6fff__product-text {
        font-size: 0.95em;
        color: #bbb;
        flex-grow: 1;
    }

    .page-6fff__promo-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-6fff__promo-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;
        box-sizing: border-box;
    }

    .page-6fff__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-6fff__promo-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 20px;
        box-sizing: border-box !important;
    }

    .page-6fff__promo-title {
        font-size: 1.4em;
        color: #ffcc00;
        margin-bottom: 10px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6fff__promo-text {
        font-size: 0.95em;
        color: #bbb;
        flex-grow: 1;
    }

    .page-6fff__cta-button-wrapper {
        margin-top: 40px;
    }

    .page-6fff__cta-button {
        display: inline-block;
        background-color: #e74c3c;
        color: #fff;
        padding: 15px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-6fff__cta-button:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }

    .page-6fff__feature-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
    }

    .page-6fff__feature-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    .page-6fff__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        box-sizing: border-box !important;
    }

    .page-6fff__feature-title {
        font-size: 1.4em;
        color: #ffcc00;
        margin-bottom: 10px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6fff__feature-description {
        font-size: 0.95em;
        color: #bbb;
    }

    .page-6fff__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-6fff__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .page-6fff__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #333;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-6fff__faq-question:hover {
        background-color: #444;
    }

    .page-6fff__faq-q-text {
        margin: 0;
        font-size: 1.2em;
        color: #ffcc00;
        pointer-events: none;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-6fff__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        margin-left: 15px;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .page-6fff__faq-item.active .page-6fff__faq-toggle {
        transform: rotate(45deg);
    }

    .page-6fff__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-6fff__faq-item.active .page-6fff__faq-answer {
        max-height: 2000px !important;
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-6fff__faq-answer p {
        margin: 0;
        color: #ccc;
        font-size: 1em;
    }

    .page-6fff__cta-buttons-bottom {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-6fff__cta-button--register {
        background-color: #ffcc00;
        color: #333;
    }

    .page-6fff__cta-button--register:hover {
        background-color: #e6b800;
    }

    .page-6fff__cta-button--login {
        background-color: #4CAF50;
        color: #fff;
    }

    .page-6fff__cta-button--login:hover {
        background-color: #45a049;
    }

    .page-6fff__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-6fff__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s ease;
        text-align: center;
        line-height: 1.2;
    }

    .page-6fff__floating-button:hover {
        transform: scale(1.05);
    }

    .page-6fff__floating-button--register {
        background-color: #ffcc00;
        color: #333;
    }

    .page-6fff__floating-button--login {
        background-color: #4CAF50;
    }

    @media (max-width: 768px) {
        .page-6fff__main-title {
            font-size: 2em;
        }

        .page-6fff__hero-description {
            font-size: 1em;
        }

        .page-6fff__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-6fff__hero-button {
            width: 80%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-6fff__section-title {
            font-size: 1.6em;
        }

        .page-6fff__section-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .page-6fff__product-grid,
        .page-6fff__promo-cards,
        .page-6fff__feature-list {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 10px;
        }

        .page-6fff__product-item,
        .page-6fff__promo-card,
        .page-6fff__feature-item,
        .page-6fff__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-6fff__product-image,
        .page-6fff__promo-image,
        .page-6fff__feature-icon,
        .page-6fff__hero-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-6fff__faq-question {
            padding: 15px 20px;
        }

        .page-6fff__faq-q-text {
            font-size: 1.1em;
        }

        .page-6fff__faq-answer {
            padding: 15px 20px !important;
        }

        .page-6fff__cta-buttons-bottom {
            flex-direction: column;
            gap: 15px;
        }

        .page-6fff__cta-button {
            width: 80%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-6fff__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 10px;
        }

        .page-6fff__floating-button {
            width: 50px;
            height: 50px;
            font-size: 0.8em;
        }
    }

    @media (max-width: 480px) {
        .page-6fff__hero-section,
        .page-6fff__products-section,
        .page-6fff__promo-section,
        .page-6fff__why-choose-us-section,
        .page-6fff__faq-section,
        .page-6fff__contact-cta-section {
            padding-left: 15px;
            padding-right: 15px;
        }

        .page-6fff__main-title {
            font-size: 1.8em;
        }

        .page-6fff__section-title {
            font-size: 1.5em;
        }
    }
  