/* style/register.css */

/* --- Base Styles & Variables --- */
.page-register {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background: #F4F7FB; /* Background */
}

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

/* --- Hero Section --- */
.page-register__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    position: relative;
    overflow: hidden;
    background-color: #2F6BFF; /* Main color as fallback */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover for desktop to fill space */
}

.page-register__hero-content {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff; /* Light text on dark hero section */
}

.page-register__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size clamp */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffffff;
}

.page-register__description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* --- Buttons --- */
.page-register__btn-primary,
.page-register__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-register__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
}

.page-register__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 7px 20px rgba(47, 107, 255, 0.4);
    transform: translateY(-2px);
}

.page-register__btn-secondary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
    margin-left: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-register__btn-secondary:hover {
    background: #f0f0f0;
    color: #2458cc;
    border-color: #2458cc;
    transform: translateY(-2px);
}

/* --- Section Titles & Descriptions --- */
.page-register__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-register__section-title--light {
    color: #ffffff;
}

.page-register__section-description {
    font-size: 1.05rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #1F2D3D; /* Text Main */
}

.page-register__section-description--light {
    color: #f0f0f0;
}

/* --- Benefits Section --- */
.page-register__benefits-section {
    padding: 80px 0;
    background: #2F6BFF; /* Main color */
    color: #ffffff;
}

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

.page-register__benefit-card {
    background: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #1F2D3D; /* Text Main */
}

.page-register__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-register__benefit-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}

.page-register__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-register__card-text {
    font-size: 1rem;
    color: #1F2D3D;
}

/* --- Form Section --- */
.page-register__form-section {
    padding: 80px 0;
    background: #F4F7FB; /* Background */
}

.page-register__form-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 50px;
}

.page-register__registration-form {
    flex: 1;
    background: #FFFFFF; /* Card BG */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #D6E2FF; /* Border */
}

.page-register__form-group {
    margin-bottom: 20px;
}

.page-register__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1F2D3D; /* Text Main */
}

.page-register__form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    font-size: 1rem;
    color: #1F2D3D;
    background-color: #fcfdff;
    box-sizing: border-box;
}

.page-register__form-input::placeholder {
    color: #888;
}

.page-register__form-input:focus {
    border-color: #2F6BFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.2);
}

.page-register__checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
    margin-bottom: 30px;
}

.page-register__form-checkbox {
    margin-right: 10px;
    margin-top: 4px; /* Align checkbox with text */
    flex-shrink: 0;
}

.page-register__terms-link,
.page-register__privacy-link,
.page-register__login-link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 600;
}

.page-register__terms-link:hover,
.page-register__privacy-link:hover,
.page-register__login-link:hover {
    text-decoration: underline;
}

.page-register__submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 20px;
}

.page-register__form-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-register__form-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}

.page-register__login-prompt {
    text-align: center;
    margin-top: 30px;
    font-size: 1.05rem;
    color: #1F2D3D;
}

/* --- Why Choose Us Section --- */
.page-register__why-choose-us {
    padding: 80px 0;
    background: #F4F7FB; /* Background */
    border-top: 1px solid #D6E2FF;
}

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

.page-register__reason-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF;
}

.page-register__reason-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-register__reason-text {
    font-size: 1rem;
    color: #1F2D3D;
}

/* --- CTA Section --- */
.page-register__cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2F6BFF, #6FA3FF); /* Blend main and aux colors */
    color: #ffffff;
    text-align: center;
}

.page-register__cta-content {
    max-width: 900px;
}

.page-register__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* --- FAQ Section --- */
.page-register__faq-section {
    padding: 80px 0;
    background: #F4F7FB; /* Background */
    border-top: 1px solid #D6E2FF;
}

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

details.page-register__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #fff; /* Card BG */
}
details.page-register__faq-item summary.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #1F2D3D; /* Text Main */
}
details.page-register__faq-item summary.page-register__faq-question::-webkit-details-marker {
  display: none;
}
details.page-register__faq-item summary.page-register__faq-question:hover {
  background: #f5f5f5;
}