
    :root {
        --primary-color: #FFD700; /* Gold */
        --secondary-color: #333;
        --text-color: #EEE;
        --background-dark: #1a1a1a;
        --background-light: #2c2c2c;
        --accent-color: #00BFFF; /* Deep Sky Blue */
        --border-radius: 10px;
        --padding-section: 40px 20px;
    }

    /* Base styles for the page */
    .page-3bet-bot {
        font-family: 'Arial', sans-serif;
        color: var(--text-color);
        background-color: var(--background-dark);
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
        box-sizing: border-box;
    }

    .page-3bet-bot__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-3bet-bot__hero-section {
        background-color: var(--background-dark);
        padding: 10px 0 60px 0; /* Minimal top padding, assuming body has header offset */
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-3bet-bot__hero-image {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        opacity: 0.7;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        min-width: 200px; /* Min size requirement */
        min-height: 200px; /* Min size requirement */
    }

    .page-3bet-bot__hero-content {
        position: relative;
        z-index: 2;
        padding: 80px 20px 40px;
        background: linear-gradient(to bottom, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.95));
        border-radius: var(--border-radius);
        margin: 20px;
    }

    .page-3bet-bot__hero-title {
        font-size: 2.8em;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-3bet-bot__hero-description {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto 30px;
        color: var(--text-color);
    }

    .page-3bet-bot__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-3bet-bot__button:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }

    .page-3bet-bot__section {
        padding: var(--padding-section);
        background-color: var(--background-light);
        margin-bottom: 25px;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-3bet-bot__section-dark {
        background-color: var(--background-dark);
    }

    .page-3bet-bot__section-title {
        font-size: 2.2em;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-3bet-bot__text-block {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: justify;
    }

    .page-3bet-bot__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-3bet-bot__product-card {
        background-color: var(--background-dark);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .page-3bet-bot__product-card:hover {
        transform: translateY(-5px);
    }

    .page-3bet-bot__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        min-width: 200px; /* Min size requirement */
        min-height: 200px; /* Min size requirement */
        max-width: 100%;
        height: auto; /* Ensure responsiveness */
        display: block;
    }

    .page-3bet-bot__product-content {
        padding: 20px;
    }

    .page-3bet-bot__product-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-3bet-bot__promo-list,
    .page-3bet-bot__why-choose-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .page-3bet-bot__promo-item,
    .page-3bet-bot__why-choose-item {
        background-color: var(--background-dark);
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: flex-start;
        gap: 15px;
        box-sizing: border-box; /* Crucial for list item width */
    }
    
    .page-3bet-bot__promo-item strong,
    .page-3bet-bot__why-choose-item strong {
        color: var(--primary-color);
        font-size: 1.1em;
    }

    /* FAQ Section Styles */
    .page-3bet-bot__faq-section {
        padding: var(--padding-section);
        background-color: var(--background-light);
        margin-bottom: 25px;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-3bet-bot__faq-item {
        margin-bottom: 15px;
        border: 1px solid #444;
        border-radius: var(--border-radius);
        overflow: hidden;
        background-color: var(--background-dark);
    }

    .page-3bet-bot__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #3a3a3a;
        cursor: pointer;
        user-select: none;
        font-size: 1.1em;
        font-weight: bold;
        color: var(--primary-color);
        transition: background-color 0.3s ease;
    }

    .page-3bet-bot__faq-question h3 {
        margin: 0;
        color: var(--primary-color);
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-3bet-bot__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-3bet-bot__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-3bet-bot__faq-item.active .page-3bet-bot__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to a cross */
    }

    .page-3bet-bot__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--text-color);
        font-size: 1em;
    }

    .page-3bet-bot__faq-item.active .page-3bet-bot__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* Floating Buttons */
    .page-3bet-bot__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: calc(100% - 30px); /* Adjust for padding */
        max-width: 400px; /* Limit width on larger screens */
        box-sizing: border-box;
    }

    .page-3bet-bot__floating-button {
        flex: 1; /* Distribute space evenly */
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 12px 10px; /* Reduced padding for mobile */
        border-radius: 30px;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        white-space: nowrap;
        text-align: center;
        font-size: 0.9em; /* Smaller font for mobile */
        box-sizing: border-box;
    }
    .page-3bet-bot__floating-button:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }


    /* Responsive Design */
    @media (max-width: 768px) {
        .page-3bet-bot__hero-title {
            font-size: 2em;
        }

        .page-3bet-bot__hero-description {
            font-size: 1em;
        }

        .page-3bet-bot__section-title {
            font-size: 1.8em;
        }

        .page-3bet-bot__product-grid {
            grid-template-columns: 1fr;
        }

        .page-3bet-bot__promo-list,
        .page-3bet-bot__why-choose-list {
            grid-template-columns: 1fr;
            padding: 0;
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-3bet-bot__promo-item,
        .page-3bet-bot__why-choose-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        .page-3bet-bot__product-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-3bet-bot__floating-buttons {
            gap: 10px;
            padding: 0 15px;
        }
        .page-3bet-bot__floating-button {
            padding: 10px 10px;
            font-size: 0.85em;
        }
    }

    @media (max-width: 480px) {
        .page-3bet-bot__hero-content {
            padding: 60px 15px 30px;
            margin: 10px;
        }
        .page-3bet-bot__hero-title {
            font-size: 1.8em;
        }
        .page-3bet-bot__section-title {
            font-size: 1.6em;
        }
        .page-3bet-bot__button {
            padding: 12px 20px;
            font-size: 0.9em;
        }
        .page-3bet-bot__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-3bet-bot__faq-question h3 {
            font-size: 1em;
        }
        .page-3bet-bot__faq-answer {
            padding: 15px 15px !important; /* Adjust for smaller screens */
        }
        .page-3bet-bot__floating-buttons {
            bottom: 15px;
            gap: 8px;
            width: calc(100% - 20px);
            padding: 0 10px;
        }
        .page-3bet-bot__floating-button {
            font-size: 0.8em;
            padding: 8px 8px;
        }
    }
  