.page-register {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-register__hero-section {
    background-color: #000080; /* Navy blue background for hero */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden; /* For image */
}

.page-register__hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.page-register__main-heading {
    font-size: 2.8em;
    color: #FFD700; /* Gold heading */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__tagline {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Navy text on gold 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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-register__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.3; /* Make background image subtle */
}

.page-register__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block; /* Ensure it takes full space */
}

.page-register__section-heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold headings for sections */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-register__value-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.page-register__value-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

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

.page-register__value-description {
    font-size: 1em;
    color: #cccccc;
}

.page-register__steps-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.page-register__steps-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-register__steps-image-wrapper {
    flex: 1;
    min-width: 300px; /* Ensure image is not too small */
}

.page-register__steps-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: block;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-register__steps-list {
    flex: 1;
    list-style: none;
    padding: 0;
}

.page-register__step-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #FFD700;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-register__step-description {
    font-size: 1em;
    color: #cccccc;
}

.page-register__conditions-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.page-register__conditions-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-register__conditions-list {
    list-style: none;
    padding: 0;
}

.page-register__condition-item {
    background-color: rgba(0, 0, 128, 0.3); /* Semi-transparent navy */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.page-register__condition-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-register__condition-description {
    font-size: 1em;
    color: #cccccc;
}

.page-register__learn-more-link {
    display: block;
    text-align: center;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-register__learn-more-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-register__security-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-register__security-image-wrapper {
    flex: 1;
    min-width: 300px; /* Ensure image is not too small */
}

.page-register__security-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-register__security-text {
    flex: 2;
}

.page-register__security-description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-register__security-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.page-register__feature-item {
    background-color: #FFD700; /* Gold for feature items */
    color: #000080;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.95em;
}

.page-register__privacy-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-register__privacy-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-register__bonus-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    background-color: rgba(0, 0, 128, 0.4);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-register__bonus-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-register__bonus-description {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-register__promo-link {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 20px;
    transition: background-color 0.3s ease;
}

.page-register__promo-link:hover {
    background-color: #e6c200;
}

.page-register__bonus-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Navy text on gold 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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-register__bonus-cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}


.page-register__faq-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.page-register__faq-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-register__faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.page-register__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-register__faq-question {
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.2em;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-register__faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-register__faq-question.active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation for minus */
}

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

.page-register__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #cccccc;
    padding-left: 10px;
}

.page-register__faq-answer p {
    padding-top: 10px;
    margin-top: 0;
}

.page-register__cta-final-section {
    text-align: center;
    margin: 80px auto;
    padding: 40px 20px;
    max-width: 900px;
    background-color: rgba(0, 0, 128, 0.5);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

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

.page-register__cta-final-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-register__cta-final-button:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register__hero-section {
        padding: 60px 20px;
    }

    .page-register__main-heading {
        font-size: 2.2em;
    }

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

    .page-register__steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .page-register__security-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .page-register__security-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        padding: 40px 15px;
    }

    .page-register__main-heading {
        font-size: 1.8em;
    }

    .page-register__tagline {
        font-size: 1em;
    }

    .page-register__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register__section-heading {
        font-size: 1.6em;
        margin-top: 40px;
        margin-bottom: 30px;
    }

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

    .page-register__value-item {
        padding: 25px;
    }

    .page-register__value-title {
        font-size: 1.3em;
    }

    .page-register__steps-image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-register__steps-image,
    .page-register__security-image,
    .page-register__bonus-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }

    .page-register__promo-link,
    .page-register__bonus-cta-button {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-register__bonus-cta-button {
        margin-bottom: 0;
    }

    .page-register__faq-question {
        font-size: 1.1em;
    }

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

    .page-register__cta-final-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-register__main-heading {
        font-size: 1.5em;
    }
    .page-register__section-heading {
        font-size: 1.4em;
    }
    .page-register__cta-button,
    .page-register__bonus-cta-button,
    .page-register__promo-link {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-register__faq-question {
        font-size: 1em;
    }
    .page-register__cta-final-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}

/* Enforce minimum image sizes for content area images */
.page-register img {
    min-width: 200px;
    min-height: 200px;
}

/* Mobile specific image sizing for content area */
@media (max-width: 768px) {
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}