.page-register {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-register__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #000000; /* Dark background for hero section */
    color: #FFFFFF;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-register__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Overlay for text readability */
    z-index: 0;
}

.page-register__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
    border-radius: 10px;
}

.page-register__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-register__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-register__hero-button, .page-register__main-cta-button, .page-register__secondary-cta-button, .page-register__final-cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color for CTA */
    color: #000000; /* Dark text for the button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-register__hero-button:hover, .page-register__main-cta-button:hover, .page-register__secondary-cta-button:hover, .page-register__final-cta-button:hover {
    background-color: #FFD700; /* Slightly lighter yellow on hover */
    transform: translateY(-3px);
}

.page-register__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-register__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.page-register__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__value-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

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

.page-register__feature-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-register__feature-icon {
    width: 200px; /* Min size */
    height: 150px; /* Min size */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-register__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-register__feature-text {
    font-size: 1em;
    color: #666666;
}

.page-register__cta-container {
    text-align: center;
    margin-top: 50px;
}

.page-register__steps-section {
    background-color: #F0F0F0;
    padding: 60px 0;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 40px;
}

.page-register__step-item {
    background-color: #FFFFFF;
    border-left: 5px solid #FCBC45;
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    padding-left: 80px;
}

.page-register__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FCBC45;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: bold;
}

.page-register__step-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-register__step-text {
    font-size: 1em;
    color: #666666;
}

.page-register__conditions-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.page-register__conditions-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-register__condition-item {
    background-color: #F8F8F8;
    border-left: 4px solid #000000; /* Main color for emphasis */
    margin-bottom: 20px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    font-size: 1.05em;
    color: #444444;
}

.page-register__condition-item strong {
    color: #000000;
}

.page-register__responsible-gaming-text {
    text-align: center;
    font-size: 1.1em;
    color: #555555;
    margin-top: 40px;
}

.page-register__responsible-gaming-link {
    display: inline-block;
    color: #000000;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.page-register__responsible-gaming-link:hover {
    color: #FCBC45;
}

.page-register__faq-section {
    background-color: #F0F0F0;
    padding: 60px 0;
}

.page-register__faq-list {
    margin-top: 40px;
}

.page-register__faq-item {
    background-color: #FFFFFF;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    border: 1px solid #E0E0E0;
}

.page-register__faq-question {
    display: block;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
    background-color: #F5F5F5;
}

.page-register__faq-toggle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    color: #FCBC45;
}

.page-register__faq-item[open] .page-register__faq-toggle {
    content: '-';
}

.page-register__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
}

.page-register__faq-answer p {
    margin: 0;
}

.page-register__faq-answer a {
    color: #000000;
    text-decoration: underline;
}

.page-register__faq-answer a:hover {
    color: #FCBC45;
}

.page-register__final-cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-register__final-cta-section .page-register__section-title, .page-register__final-cta-section .page-register__section-description {
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }

    .page-register__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        min-height: 400px;
    }

    .page-register__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-register__section-description {
        font-size: 0.95em;
    }

    .page-register__features-grid {
        grid-template-columns: 1fr;
    }

    .page-register__step-item {
        padding-left: 60px;
    }

    .page-register__step-item::before {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .page-register__step-title {
        font-size: 1.4em;
    }

    .page-register__feature-icon, .page-register__feature-item img, .page-register__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }

    .page-register__hero-button, .page-register__main-cta-button, .page-register__secondary-cta-button, .page-register__final-cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

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

    .page-register__content-area {
        padding: 20px 15px;
    }

    .page-register__feature-item, .page-register__step-item, .page-register__condition-item, .page-register__faq-item {
        padding: 15px 20px;
    }

    .page-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-register__faq-toggle {
        right: 20px;
    }
}