
    .page-code-promo-1win {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* General Section Styling */
.page-code-promo-1win__section-title {
    font-size: 2.2em;
    color: #0056b3; /* Dark blue for headings */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    padding: 0 15px;
    font-weight: bold;
}

.page-code-promo-1win__content-block {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0 15px;
    text-align: justify;
}

.page-code-promo-1win__content-block p {
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #555;
}

/* Hero Section */
.page-code-promo-1win__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
    color: #fff;
    padding: 10px 20px 60px 20px; /* 10px top padding as per fixed nav spacing */
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.page-code-promo-1win__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-code-promo-1win__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.page-code-promo-1win__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-code-promo-1win__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-code-promo-1win__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;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 180px; /* Ensure button has minimum width */
    text-align: center;
}

.page-code-promo-1win__button--primary {
    background-color: #ffc107; /* Yellow */
    color: #333;
}

.page-code-promo-1win__button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-code-promo-1win__button--secondary {
    background-color: #28a745; /* Green */
    color: #fff;
}

.page-code-promo-1win__button--secondary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.page-code-promo-1win__hero-image-container {
    margin-top: 40px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-code-promo-1win__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block; /* Remove extra space below image */
}

/* How-To-Use Section */
.page-code-promo-1win__how-to-use-section {
    padding-bottom: 60px;
}

.page-code-promo-1win__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-code-promo-1win__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-code-promo-1win__step-item:hover {
    transform: translateY(-5px);
}

.page-code-promo-1win__step-icon {
    width: 200px; /* Minimum 200px as per requirements */
    height: auto;
    margin-bottom: 20px;
    max-width: 100%; /* Responsive image */
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-code-promo-1win__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-code-promo-1win__step-description {
    font-size: 1em;
    color: #666;
}

/* Benefits Section */
.page-code-promo-1win__benefits-section {
    background-color: #eaf6ff; /* Light blue background */
    padding: 60px 0;
}

.page-code-promo-1win__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 15px;
}

.page-code-promo-1win__benefits-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Crucial for responsive lists */
}

.page-code-promo-1win__benefits-item:hover {
    transform: translateY(-3px);
}

.page-code-promo-1win__benefits-title {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-code-promo-1win__benefits-description {
    font-size: 1em;
    color: #666;
}

/* Why Choose Section */
.page-code-promo-1win__why-choose-section {
    padding-bottom: 60px;
}

.page-code-promo-1win__image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 15px;
}

.page-code-promo-1win__grid-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Responsive image */
    height: auto;
    display: block;
}

/* FAQ Section */
.page-code-promo-1win__faq-section {
    padding-bottom: 80px;
    background-color: #f0f8ff; /* Very light blue */
}

.page-code-promo-1win__faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-code-promo-1win__faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-code-promo-1win__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background-color: #007bff; /* Blue question background */
    color: #fff;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-code-promo-1win__faq-question:hover {
    background-color: #0056b3;
}

.page-code-promo-1win__faq-question-title {
    font-size: 1.2em;
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click event */
    color: #fff; /* Ensure text color is white for contrast */
}

.page-code-promo-1win__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    pointer-events: none; /* Prevent span from blocking click event */
    transition: transform 0.3s ease;
}

.page-code-promo-1win__faq-item.active .page-code-promo-1win__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-code-promo-1win__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px; /* Initial padding 0 */
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    background-color: #fcfcfc;
    color: #444;
    border-top: 1px solid #eee;
}

.page-code-promo-1win__faq-item.active .page-code-promo-1win__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 15px !important; /* Required padding for active state */
    opacity: 1;
}

.page-code-promo-1win__faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Floating Buttons */
.page-code-promo-1win__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-code-promo-1win__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 45px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.page-code-promo-1win__floating-button--register {
    background-color: #ffc100; /* Yellow */
    color: #333;
}

.page-code-promo-1win__floating-button--register:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-code-promo-1win__floating-button--login {
    background-color: #007bff; /* Blue */
}

.page-code-promo-1win__floating-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-code-promo-1win__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-code-promo-1win__hero-title {
        font-size: 2em;
    }

    .page-code-promo-1win__hero-description {
        font-size: 1.1em;
    }

    .page-code-promo-1win__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-code-promo-1win__button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-code-promo-1win__steps-container,
    .page-code-promo-1win__benefits-list,
    .page-code-promo-1win__image-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 20px;
    }

    .page-code-promo-1win__step-item,
    .page-code-promo-1win__benefits-item {
        width: 100% !important; /* Ensure full width for list items */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-code-promo-1win__benefits-list,
    .page-code-promo-1win__steps-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust container padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-code-promo-1win__faq-question {
        padding: 15px 18px;
    }

    .page-code-promo-1win__faq-question-title {
        font-size: 1.1em;
    }

    .page-code-promo-1win__faq-answer {
        padding: 0 18px;
    }

    .page-code-promo-1win__faq-item.active .page-code-promo-1win__faq-answer {
        padding: 15px 18px !important;
    }

    .page-code-promo-1win__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on smaller screens if space allows */
        width: auto;
        gap: 8px;
    }
    
    .page-code-promo-1win__floating-button {
        width: 100px;
        height: 40px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-code-promo-1win__hero-title {
        font-size: 1.8em;
    }
    .page-code-promo-1win__hero-description {
        font-size: 1em;
    }
    .page-code-promo-1win__floating-buttons {
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        flex-direction: row;
        justify-content: space-around;
    }
    .page-code-promo-1win__floating-button {
        flex: 1;
        max-width: 48%;
        height: 40px;
        font-size: 0.9em;
    }
}
  