/* style/registration-guide-step-by-step.css */
.page-registration-guide-step-by-step {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-registration-guide-step-by-step__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-guide-step-by-step__hero-section {
    background: linear-gradient(135deg, #0A2463, #3a5c96);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-step-by-step__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(243, 199, 0, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.page-registration-guide-step-by-step__hero-section .page-registration-guide-step-by-step__container {
    position: relative;
    z-index: 1;
}

.page-registration-guide-step-by-step__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #F3C700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-step-by-step__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-registration-guide-step-by-step__cta-button {
    display: inline-block;
    background-color: #F3C700;
    color: #0A2463;
    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;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-step-by-step__cta-button:hover {
    background-color: #e0b400;
    transform: translateY(-3px);
}

.page-registration-guide-step-by-step__cta-button--secondary {
    background-color: #0A2463;
    color: #F3C700;
    border: 2px solid #F3C700;
}

.page-registration-guide-step-by-step__cta-button--secondary:hover {
    background-color: #1a3c7c;
    border-color: #e0b400;
}

.page-registration-guide-step-by-step__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-registration-guide-step-by-step__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-registration-guide-step-by-step__content-section,
.page-registration-guide-step-by-step__steps-section,
.page-registration-guide-step-by-step__benefits-section,
.page-registration-guide-step-by-step__faq-section,
.page-registration-guide-step-by-step__final-cta {
    padding: 60px 0;
}

.page-registration-guide-step-by-step__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-registration-guide-step-by-step__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #F3C700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-registration-guide-step-by-step__intro-text,
.page-registration-guide-step-by-step__text-block {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.page-registration-guide-step-by-step__reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-guide-step-by-step__reason-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0A2463;
}

.page-registration-guide-step-by-step__reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-registration-guide-step-by-step__reason-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(243, 199, 0, 0.4));
}

.page-registration-guide-step-by-step__reason-item h3 {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-registration-guide-step-by-step__reason-item p {
    font-size: 1em;
    color: #666;
}

.page-registration-guide-step-by-step__steps-section {
    background-color: #f0f4f7;
}

.page-registration-guide-step-by-step__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 30px;
    position: relative;
    border-left: 8px solid #F3C700;
}

.page-registration-guide-step-by-step__step-item:nth-child(even) {
    flex-direction: row-reverse;
    border-right: 8px solid #F3C700;
    border-left: none;
}

.page-registration-guide-step-by-step__step-number {
    background-color: #0A2463;
    color: #F3C700;
    font-size: 2.2em;
    font-weight: bold;
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-registration-guide-step-by-step__step-item:nth-child(even) .page-registration-guide-step-by-step__step-number {
    margin: 0 30px 0 0;
}

.page-registration-guide-step-by-step__step-content {
    flex-grow: 1;
}

.page-registration-guide-step-by-step__step-content h3 {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-registration-guide-step-by-step__step-content p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 15px;
}

.page-registration-guide-step-by-step__step-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-registration-guide-step-by-step__step-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #444;
}

.page-registration-guide-step-by-step__step-content ul li::before {
    content: '✔';
    color: #F3C700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-registration-guide-step-by-step__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-step-by-step__note {
    font-style: italic;
    color: #888;
    font-size: 0.95em;
    margin-top: 15px;
}

.page-registration-guide-step-by-step__benefits-section {
    background-color: #ffffff;
}

.page-registration-guide-step-by-step__benefits-section ul {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-registration-guide-step-by-step__benefits-section ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.15em;
    color: #333;
}

.page-registration-guide-step-by-step__benefits-section ul li::before {
    content: '★';
    color: #F3C700;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
    font-weight: bold;
}

.page-registration-guide-step-by-by-step__faq-section {
    background-color: #f0f4f7;
}

.page-registration-guide-step-by-step__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #0A2463;
}

.page-registration-guide-step-by-step__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-registration-guide-step-by-step__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #F3C700;
    transition: transform 0.3s ease;
}

.page-registration-guide-step-by-step__faq-question.active::after {
    transform: rotate(45deg);
}

.page-registration-guide-step-by-step__faq-answer {
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-registration-guide-step-by-step__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-registration-guide-step-by-step__final-cta {
    background: linear-gradient(45deg, #F3C700, #e0b400);
    padding: 70px 0;
    text-align: center;
    color: #0A2463;
}

.page-registration-guide-step-by-step__final-cta .page-registration-guide-step-by-step__section-title {
    color: #0A2463;
}

.page-registration-guide-step-by-step__final-cta .page-registration-guide-step-by-step__section-title::after {
    background-color: #0A2463;
}

.page-registration-guide-step-by-step__final-cta .page-registration-guide-step-by-step__text-block {
    color: #333;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-registration-guide-step-by-step__main-title {
        font-size: 2.8em;
    }
    .page-registration-guide-step-by-step__subtitle {
        font-size: 1.2em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 2em;
    }
    .page-registration-guide-step-by-step__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 8px solid #F3C700;
        padding-top: 50px;
    }
    .page-registration-guide-step-by-step__step-item:nth-child(even) {
        flex-direction: column;
        border-right: none;
        border-top: 8px solid #F3C700;
    }
    .page-registration-guide-step-by-step__step-number {
        margin: -70px auto 30px auto;
    }
    .page-registration-guide-step-by-step__step-item:nth-child(even) .page-registration-guide-step-by-step__step-number {
        margin: -70px auto 30px auto;
    }
}

@media (max-width: 768px) {
    .page-registration-guide-step-by-step__hero-section {
        padding: 60px 0;
    }
    .page-registration-guide-step-by-step__main-title {
        font-size: 2.2em;
    }
    .page-registration-guide-step-by-step__subtitle {
        font-size: 1em;
    }
    .page-registration-guide-step-by-step__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-registration-guide-step-by-step__content-section,
    .page-registration-guide-step-by-step__steps-section,
    .page-registration-guide-step-by-step__benefits-section,
    .page-registration-guide-step-by-step__faq-section,
    .page-registration-guide-step-by-step__final-cta {
        padding: 40px 0;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.8em;
    }
    .page-registration-guide-step-by-step__reason-item h3 {
        font-size: 1.3em;
    }
    .page-registration-guide-step-by-step__step-content h3 {
        font-size: 1.5em;
    }
    .page-registration-guide-step-by-step__benefits-section ul li {
        font-size: 1em;
    }
    .page-registration-guide-step-by-step__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-registration-guide-step-by-step__main-title {
        font-size: 1.8em;
    }
    .page-registration-guide-step-by-step__subtitle {
        font-size: 0.9em;
    }
    .page-registration-guide-step-by-step__cta-button {
        display: block;
        margin: 10px auto;
        width: 90%;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.5em;
    }
    .page-registration-guide-step-by-step__reason-grid {
        grid-template-columns: 1fr;
    }
    .page-registration-guide-step-by-step__step-number {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.8em;
        margin: -60px auto 20px auto;
    }
    .page-registration-guide-step-by-step__step-item:nth-child(even) .page-registration-guide-step-by-step__step-number {
        margin: -60px auto 20px auto;
    }
    .page-registration-guide-step-by-step__step-content h3 {
        font-size: 1.3em;
    }
}