@charset "UTF-8";

.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 content is below fixed header */
}

.page-register__hero-section {
    background-color: #0A1931; /* Main brand color */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-register__hero-content {
    max-width: 800px;
}

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

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

.page-register__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-register__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-register__hero-image {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
}

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

.page-register__value-section, .page-register__steps-section, .page-register__terms-section, .page-register__faq-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.page-register__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

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

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

.page-register__value-item {
    background-color: rgba(10, 25, 49, 0.8); /* Darker background for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-register__value-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
}

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

.page-register__value-text {
    color: #e0e0e0;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-register__step-item {
    background-color: rgba(10, 25, 49, 0.8);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 60px;
}

.page-register__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFD700;
    color: #0A1931;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #0A1931;
}

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

.page-register__step-text {
    color: #e0e0e0;
}

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

.page-register__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-register__terms-item {
    background-color: rgba(10, 25, 49, 0.6);
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #e0e0e0;
}

.page-register__terms-item strong {
    color: #FFD700;
}

.page-register__faq-container {
    margin-top: 30px;
}

.page-register__faq-item {
    background-color: rgba(10, 25, 49, 0.7);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-register__faq-question:hover {
    background-color: rgba(10, 25, 49, 0.9);
}

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

.page-register__faq-item[open] .page-register__faq-toggle {
    transform: translateY(-50%) rotate(45deg);
}

.page-register__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05em;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 2.8em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__value-item, .page-register__step-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-register__hero-section {
        padding: 60px 15px;
    }
    .page-register__hero-title {
        font-size: 2.2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__hero-image img,
    .page-register__value-item img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum display size */
        min-height: 200px; /* Enforce minimum display size */
    }
    .page-register__value-section, .page-register__steps-section, .page-register__terms-section, .page-register__faq-section {
        margin: 30px auto;
        padding: 30px 15px;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-register__value-grid, .page-register__steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-register__step-item {
        padding-top: 50px;
    }
    .page-register__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-register__faq-toggle {
        right: 20px;
    }
    .page-register__faq-answer {
        padding: 0 20px 18px;
    }
    /* Ensure content area images do not cause horizontal scroll */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__hero-description {
        font-size: 0.9em;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__value-heading {
        font-size: 1.4em;
    }
    .page-register__step-heading {
        font-size: 1.3em;
    }
}