.page-register {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #FFFFFF; /* Page background as per color scheme */
    color: #333333; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-register__hero-section {
    position: relative;
    text-align: center;
    padding: 80px 20px 40px; /* Adjust padding for hero section */
    overflow: hidden;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
}

.page-register__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-register__hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-register__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__register-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color for primary CTA */
    color: #000000; /* Text color for button */
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure image meets minimum size requirement */
    min-height: 200px;
}

/* Section Titles */
.page-register__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #000000; /* Main color for titles */
}

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

/* Value Section */
.page-register__value-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

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

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

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

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

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

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

.page-register__register-button--bottom {
    background-color: #000000; /* Darker button for contrast */
    color: #FFFFFF; /* White text for dark button */
}

.page-register__register-button--bottom:hover {
    background-color: #333333;
}


/* Steps Section */
.page-register__steps-section {
    padding: 60px 0;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-register__step-item {
    display: flex;
    align-items: flex-start;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 5px solid #FCBC45;
}

.page-register__step-number {
    font-size: 2em;
    font-weight: bold;
    color: #FCBC45;
    margin-right: 20px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(252, 188, 69, 0.1);
}

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

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

/* Conditions Section */
.page-register__conditions-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-register__conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-register__condition-item {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-register__condition-icon {
    font-size: 1.5em;
    color: #28a745; /* Green checkmark */
    margin-right: 15px;
    flex-shrink: 0;
}

.page-register__condition-text {
    margin: 0;
    color: #555555;
}

/* FAQ Section */
.page-register__faq-section {
    padding: 60px 0 80px;
}

.page-register__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-register__faq-item {
    background-color: #FFFFFF;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background-color: #000000; /* Dark background for question */
    color: #FFFFFF; /* White text for question */
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

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

.page-register__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-register__faq-answer {
    padding: 0 25px;
    background-color: #f0f0f0;
    color: #333333;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-register__faq-answer.active {
    max-height: 200px; /* Max height to allow transition */
    padding: 20px 25px;
}

.page-register__faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-register__hero-title {
        font-size: 3em;
    }
    .page-register__section-title {
        font-size: 2em;
    }
    .page-register__value-icon {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-register__hero-section {
        padding: 60px 15px 30px;
    }
    .page-register__hero-title {
        font-size: 2.5em;
    }
    .page-register__hero-description {
        font-size: 1.1em;
    }
    .page-register__register-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-register__section-title {
        font-size: 1.8em;
    }
    .page-register__container {
        padding: 0 15px;
    }
    .page-register__value-grid {
        grid-template-columns: 1fr;
    }
    .page-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-register__step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-register__condition-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .page-register__condition-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    /* Mobile image overflow prevention */
    .page-register img {
        max-width: 100%;
        height: auto;
    }
    .page-register__value-icon {
        max-width: 200px; /* Ensure it doesn't shrink below 200px but fits */
        height: auto;
    }
    .page-register__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__register-button {
        font-size: 1em;
        padding: 10px 25px;
    }
    .page-register__section-title {
        font-size: 1.5em;
    }
    .page-register__value-item,
    .page-register__step-item,
    .page-register__condition-item {
        padding: 20px;
    }
    .page-register__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
}