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

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

.page-registration-guide-step-by-step__hero {
    background: linear-gradient(135deg, #003366, #1a4a7e);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-step-by-step__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-registration-guide-step-by-step__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-registration-guide-step-by-step__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-guide-step-by-step__button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700;
    color: #003366;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-registration-guide-step-by-step__button--primary {
    background-color: #DC143C;
    color: #fff;
}

.page-registration-guide-step-by-step__button--primary:hover {
    background-color: #c01133;
}

.page-registration-guide-step-by-step__intro,
.page-registration-guide-step-by-step__guide-steps,
.page-registration-guide-step-by-step__benefits,
.page-registration-guide-step-by-step__faq,
.page-registration-guide-step-by-step__cta-bottom {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-registration-guide-step-by-step__heading {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-registration-guide-step-by-step__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-registration-guide-step-by-step__description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-guide-step-by-step__step-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.page-registration-guide-step-by-step__step-item:hover {
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.1);
}

.page-registration-guide-step-by-step__step-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.page-registration-guide-step-by-step__step-title::before {
    content: 'Step ' counter(step-counter) ': ';
    counter-increment: step-counter;
    color: #DC143C;
    font-weight: bold;
    margin-right: 10px;
}

.page-registration-guide-step-by-step__guide-steps {
    counter-reset: step-counter;
}

.page-registration-guide-step-by-step__image-wrapper {
    text-align: center;
    margin: 30px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-step-by-step__image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-step-by-by__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-registration-guide-step-by-step__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-registration-guide-step-by-step__list--benefits {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-registration-guide-step-by-step__list--benefits li {
    background-color: #f0f4f7;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-registration-guide-step-by-step__list--benefits li:hover {
    transform: translateY(-5px);
}

.page-registration-guide-step-by-step__list--benefits li strong {
    color: #003366;
}

.page-registration-guide-step-by-step__highlight-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #DC143C;
    text-align: center;
    margin: 30px 0;
    padding: 15px;
    background-color: #fff3f4;
    border-left: 5px solid #DC143C;
    border-radius: 5px;
}

.page-registration-guide-step-by-step__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-registration-guide-step-by-step__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-registration-guide-step-by-step__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-registration-guide-step-by-step__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-registration-guide-step-by-step__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    display: none;
}

.page-registration-guide-step-by-step__faq-answer.active {
    display: block;
}

.page-registration-guide-step-by-step__cta-bottom {
    text-align: center;
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
}

.page-registration-guide-step-by-step__cta-bottom .page-registration-guide-step-by-step__heading {
    color: #FFD700;
}

.page-registration-guide-step-by-step__cta-bottom .page-registration-guide-step-by-step__heading::after {
    background-color: #DC143C;
}

.page-registration-guide-step-by-step__cta-bottom p {
    font-size: 1.15em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-guide-step-by-step__title {
        font-size: 2.2em;
    }

    .page-registration-guide-step-by-step__subtitle {
        font-size: 1em;
    }

    .page-registration-guide-step-by-step__heading {
        font-size: 1.8em;
    }

    .page-registration-guide-step-by-step__step-title {
        font-size: 1.5em;
    }

    .page-registration-guide-step-by-step__list--benefits {
        grid-template-columns: 1fr;
    }

    .page-registration-guide-step-by-step__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-registration-guide-step-by-step__hero {
        padding: 60px 0;
    }

    .page-registration-guide-step-by-step__title {
        font-size: 1.8em;
    }

    .page-registration-guide-step-by-step__button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-registration-guide-step-by-step__intro,
    .page-registration-guide-step-by-step__guide-steps,
    .page-registration-guide-step-by-step__benefits,
    .page-registration-guide-step-by-step__faq,
    .page-registration-guide-step-by-step__cta-bottom {
        padding: 40px 0;
    }

    .page-registration-guide-step-by-step__heading {
        font-size: 1.5em;
    }

    .page-registration-guide-step-by-step__step-item {
        padding: 20px;
    }

    .page-registration-guide-step-by-step__step-title {
        font-size: 1.3em;
    }
}