.page-register {
    background-color: #F4F7FB;
    color: #1F2D3D;
    padding-bottom: 40px;
}

.page-register__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D6E2FF;
    overflow: hidden;
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-register__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-register__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-register__main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000;
}

.page-register__description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
}

.page-register__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-register__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-register__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-register__process-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F4F7FB;
}

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

.page-register__process-steps {
    flex: 1;
    min-width: 300px;
}

.page-register__process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.page-register__step-number {
    background-color: #2F6BFF;
    color: #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-register__step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-register__step-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #1F2D3D;
}

.page-register__process-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-register__process-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__security-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    border: 1px solid #D6E2FF;
}

.page-register__security-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.page-register__security-content {
    flex: 1;
    min-width: 300px;
}

.page-register__security-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-register__security-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-register__feature-item {
    font-size: 1rem;
    line-height: 1.8;
    color: #1F2D3D;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.page-register__feature-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #2F6BFF;
}

.page-register__learn-more-link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.page-register__security-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-register__security-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__faq-section {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
    background-color: #F4F7FB;
}

.page-register__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-register__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    display: block;
    padding-right: 25px;
    position: relative;
}

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

.page-register__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-register__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
    padding-top: 10px;
    border-top: 1px solid #EEE;
    margin-top: 10px;
}

.page-register__cta-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 40px auto 0;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF;
}

.page-register__cta-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
}

.page-register__cta-button--large {
    padding: 18px 40px;
    font-size: 1.25rem;
}

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

    .page-register__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-register__description {
        font-size: 1rem;
    }

    .page-register__section-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        padding-top: 40px;
        margin-bottom: 30px;
    }

    .page-register__process-layout,
    .page-register__security-layout {
        flex-direction: column;
        gap: 30px;
    }

    .page-register__process-image-wrapper,
    .page-register__security-image-wrapper {
        order: -1;
    }

    .page-register__process-image,
    .page-register__security-image {
        max-width: 100%;
        height: auto;
    }

    .page-register__process-item {
        margin-bottom: 20px;
    }

    .page-register__step-title {
        font-size: 1.3rem;
    }

    .page-register__faq-question {
        font-size: 1.05rem;
    }

    .page-register__faq-answer {
        font-size: 0.95rem;
    }

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

    .page-register__hero-image {
        min-width: unset;
        min-height: unset;
    }
}

@media (min-width: 769px) {
    .page-register__security-layout {
        flex-direction: row;
    }
    .page-register__security-content {
        order: unset;
    }
    .page-register__security-image-wrapper {
        order: unset;
    }
}