
    .page-333-vin {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden;
        padding-top: 10px; /* Small padding to account for body padding-top, if not already there, this will be the fallback */
    }

    /* Ensure body padding-top from shared.css is honored, if not, this will act as a fallback */
    @supports not (padding-top: var(--header-offset)) {
        .page-333-vin {
            padding-top: var(--header-offset, 122px); /* Fallback for older browsers or if shared.css doesn't set body padding-top */
        }
    }


    .page-333-vin__highlight {
        color: #e94560; /* Vibrant accent color */
    }

    .page-333-vin__section-title {
        font-size: 2.5em;
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .page-333-vin__section-description {
        font-size: 1.1em;
        color: #ccc;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-333-vin__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        cursor: pointer;
        box-sizing: border-box;
    }

    .page-333-vin__button--primary {
        background-color: #e94560;
        color: #fff;
        border: none;
    }

    .page-333-vin__button--primary:hover {
        background-color: #c03950;
        transform: translateY(-2px);
    }

    .page-333-vin__button--secondary {
        background-color: transparent;
        color: #e94560;
        border: 2px solid #e94560;
        margin-left: 20px;
    }

    .page-333-vin__button--secondary:hover {
        background-color: #e94560;
        color: #fff;
        transform: translateY(-2px);
    }

    .page-333-vin__button--large {
        padding: 18px 40px;
        font-size: 1.2em;
    }

    /* Hero Section */
    .page-333-vin__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 20px;
        min-height: 600px;
        background: linear-gradient(135deg, #2a003a 0%, #0c001a 100%); /* Dark gradient */
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-333-vin__hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .page-333-vin__hero-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        opacity: 0.3; /* Subtle background image */
        min-width: 100%; /* Ensure it covers the background */
        min-height: 100%;
    }

    .page-333-vin__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
    }

    .page-333-vin__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #fff;
    }

    .page-333-vin__hero-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        color: #e0e0e0;
    }

    .page-333-vin__hero-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* Floating Buttons */
    .page-333-vin__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-333-vin__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 50px;
        border-radius: 25px;
        font-weight: bold;
        text-decoration: none;
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, background-color 0.3s ease;
        font-size: 1em;
    }

    .page-333-vin__floating-button--register {
        background-color: #28a745; /* Green for register */
    }

    .page-333-vin__floating-button--register:hover {
        background-color: #218838;
        transform: translateY(-3px);
    }

    .page-333-vin__floating-button--login {
        background-color: #007bff; /* Blue for login */
    }

    .page-333-vin__floating-button--login:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

    /* Product Section */
    .page-333-vin__products-section {
        padding: 80px 20px;
        background-color: #0f0f1c;
        box-sizing: border-box;
    }

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

    .page-333-vin__product-item {
        background-color: #1a1a2e;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .page-333-vin__product-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .page-333-vin__product-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        object-fit: cover;
        width: 100%; /* Ensure image takes full width of its container */
        min-height: 200px; /* Minimum size requirement */
    }

    .page-333-vin__product-title {
        font-size: 1.8em;
        color: #fff;
        margin-bottom: 10px;
    }

    .page-333-vin__product-text {
        font-size: 1em;
        color: #ccc;
        word-wrap: break-word; /* Ensure text wraps */
    }

    /* Promotion Section */
    .page-333-vin__promo-section {
        padding: 80px 20px;
        background-color: #1a1a2e;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-333-vin__promo-content {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        text-align: left;
    }

    .page-333-vin__promo-content .page-333-vin__section-title,
    .page-333-vin__promo-content .page-333-vin__section-description {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .page-333-vin__promo-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .page-333-vin__promo-item {
        background-color: #2a2a4a;
        padding: 15px 20px;
        margin-bottom: 10px;
        border-radius: 8px;
        font-size: 1.1em;
        color: #e0e0e0;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }

    .page-333-vin__promo-item::before {
        content: '✓';
        color: #28a745;
        font-weight: bold;
        margin-right: 10px;
        font-size: 1.2em;
    }

    .page-333-vin__promo-image-container {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-333-vin__promo-image {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
        min-height: 200px; /* Minimum size requirement */
    }

    /* Why Choose Section */
    .page-333-vin__why-choose-section {
        padding: 80px 20px;
        background-color: #0f0f1c;
        box-sizing: border-box;
    }

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

    .page-333-vin__benefit-item {
        background-color: #1a1a2e;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-333-vin__benefit-item:hover {
        transform: translateY(-5px);
    }

    .page-333-vin__benefit-icon {
        max-width: 200px; /* Min size is 200x200, so this is fine */
        height: auto;
        margin-bottom: 20px;
        object-fit: contain;
        min-height: 200px; /* Enforce minimum size */
    }

    .page-333-vin__benefit-title {
        font-size: 1.6em;
        color: #fff;
        margin-bottom: 10px;
    }

    .page-333-vin__benefit-description {
        font-size: 1em;
        color: #ccc;
        word-wrap: break-word;
    }

    /* FAQ Section */
    .page-333-vin__faq-section {
        padding: 80px 20px;
        background-color: #1a1a2e;
        box-sizing: border-box;
    }

    .page-333-vin__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-333-vin__faq-item {
        background-color: #0f0f1c;
        border-radius: 12px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-333-vin__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #2a2a4a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
        user-select: none;
        box-sizing: border-box;
    }

    .page-333-vin__faq-question:hover {
        background-color: #3a3a5a;
    }

    .page-333-vin__faq-title {
        font-size: 1.3em;
        color: #fff;
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
        flex-grow: 1;
    }

    .page-333-vin__faq-toggle {
        font-size: 1.8em;
        color: #e94560;
        margin-left: 15px;
        pointer-events: none; /* Prevent icon from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-333-vin__faq-item.active .page-333-vin__faq-toggle {
        transform: rotate(45deg); /* Change + to X (or - if desired) */
        color: #28a745;
    }

    .page-333-vin__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #ccc;
        font-size: 1em;
        background-color: #0f0f1c;
        opacity: 0;
    }

    .page-333-vin__faq-item.active .page-333-vin__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-333-vin__faq-answer p {
        margin-top: 0;
        margin-bottom: 0;
        word-wrap: break-word;
    }

    /* Call to Action Section */
    .page-333-vin__cta-section {
        padding: 80px 20px;
        background-color: #0f0f1c;
        text-align: center;
        box-sizing: border-box;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-333-vin__hero-title {
            font-size: 3em;
        }
        .page-333-vin__section-title {
            font-size: 2.2em;
        }
    }

    @media (max-width: 768px) {
        .page-333-vin__hero-section {
            padding: 60px 15px;
            min-height: 500px;
        }

        .page-333-vin__hero-title {
            font-size: 2.5em;
        }

        .page-333-vin__hero-description {
            font-size: 1.1em;
        }

        .page-333-vin__hero-actions {
            flex-direction: column;
            gap: 15px;
        }

        .page-333-vin__button {
            width: 100%;
            max-width: 300px;
            margin-left: 0;
        }
        .page-333-vin__button--secondary {
            margin-left: 0;
        }

        .page-333-vin__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 10px;
        }
        .page-333-vin__floating-button {
            width: 100px;
            height: 45px;
            font-size: 0.9em;
        }

        .page-333-vin__products-section,
        .page-333-vin__promo-section,
        .page-333-vin__why-choose-section,
        .page-333-vin__faq-section,
        .page-333-vin__cta-section {
            padding: 60px 15px;
        }

        .page-333-vin__section-title {
            font-size: 2em;
            margin-bottom: 15px;
        }

        .page-333-vin__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        .page-333-vin__product-grid,
        .page-333-vin__benefits-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-333-vin__product-item,
        .page-333-vin__benefit-item {
            padding: 20px;
        }

        .page-333-vin__product-image,
        .page-333-vin__promo-image,
        .page-333-vin__benefit-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            min-height: 200px !important; /* Ensure min height is respected */
        }

        /* List items mobile responsiveness */
        .page-333-vin__promo-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-333-vin__promo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 12px 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            font-size: 0.95em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-333-vin__promo-section {
            flex-direction: column;
            gap: 30px;
        }
        .page-333-vin__promo-content,
        .page-333-vin__promo-image-container {
            max-width: 100%;
            min-width: unset;
        }
        .page-333-vin__promo-content .page-333-vin__section-title,
        .page-333-vin__promo-content .page-333-vin__section-description {
            text-align: center;
        }

        .page-333-vin__faq-question {
            padding: 18px 20px;
        }
        .page-333-vin__faq-title {
            font-size: 1.2em;
        }
        .page-333-vin__faq-toggle {
            font-size: 1.6em;
        }
        .page-333-vin__faq-answer {
            padding: 0 20px;
        }
        .page-333-vin__faq-item.active .page-333-vin__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-333-vin__hero-title {
            font-size: 2em;
        }
        .page-333-vin__section-title {
            font-size: 1.8em;
        }
        .page-333-vin__hero-description {
            font-size: 1em;
        }
        .page-333-vin__floating-buttons {
            flex-direction: row; /* Horizontal for very small screens */
            width: calc(100% - 30px);
            left: 15px;
            right: 15px;
            justify-content: space-around;
        }
        .page-333-vin__floating-button {
            width: 48%;
            height: 40px;
            font-size: 0.85em;
            border-radius: 20px;
        }
    }
  