/* style/register.css */
.page-register {
    padding-top: var(--header-offset, 120px);
    color: #333333; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8; /* Slightly off-white background for the page content */
}

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

/* Hero Section */
.page-register__hero-section {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.page-register__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-register__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.page-register__cta-button {
    display: inline-block;
    background-color: #CC0000;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-register__cta-button:hover {
    background-color: #e06666;
    transform: translateY(-2px);
}

/* Section Titles */
.page-register__section-title {
    font-size: 2.5em;
    color: #CC0000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-register__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

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

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

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

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

.page-register__value-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

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

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

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

/* Steps Section */
.page-register__steps-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

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

.page-register__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    background-color: #CC0000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register__step-content {
    flex-grow: 1;
}

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

.page-register__step-text {
    font-size: 1.05em;
    color: #555555;
}

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

.page-register__conditions-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-register__conditions-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-register__conditions-list {
    flex: 1;
    min-width: 300px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-register__conditions-item {
    background-color: #fefefe;
    border-left: 5px solid #CC0000;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #444444;
}

.page-register__inline-link {
    color: #CC0000;
    text-decoration: none;
    font-weight: bold;
}

.page-register__inline-link:hover {
    text-decoration: underline;
    color: #e06666;
}

/* FAQ Section */
.page-register__faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-register__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #CC0000;
    cursor: pointer;
    background-color: #fefefe;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

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

.page-register__faq-question::marker {
    display: none;
}

.page-register__faq-toggle {
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
    transform: rotate(45deg);
    color: #CC0000;
}

.page-register__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #555555;
    background-color: #fdfdfd;
    border-top: 1px solid #eee;
}

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

@media (max-width: 768px) {
    .page-register {
        padding-top: var(--header-offset, 80px);
    }
    .page-register__hero-section {
        min-height: 400px;
    }
    .page-register__hero-content {
        padding: 30px 15px;
    }
    .page-register__hero-title {
        font-size: 2.2em;
    }
    .page-register__hero-description {
        font-size: 1em;
    }
    .page-register__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-register__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-register__value-grid {
        grid-template-columns: 1fr;
    }
    .page-register__value-image {
        height: 200px;
    }
    .page-register__step-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .page-register__step-icon {
        margin: 0 auto 20px auto;
    }
    .page-register__step-heading {
        font-size: 1.5em;
    }
    .page-register__conditions-content {
        flex-direction: column;
    }
    .page-register__conditions-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .page-register__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-register__faq-answer {
        padding: 18px 20px;
    }

    .page-register img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-register__hero-title {
        font-size: 1.8em;
    }
    .page-register__section-title {
        font-size: 1.6em;
    }
    .page-register__value-heading {
        font-size: 1.4em;
    }
    .page-register__step-heading {
        font-size: 1.3em;
    }
    .page-register__faq-question {
        font-size: 1em;
    }
}

.page-register img {
    filter: none !important;
}

.page-register__value-image,
.page-register__conditions-image {
    min-width: 200px;
    min-height: 200px;
}
.page-register img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%;
    height: auto;
}