/* style/registration-guide-step-by-step.css */
.page-registration-guide-step-by-step {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark grey for general text on light background, WCAG AA contrast with #f9f9f9 is 12.8:1 */
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background */
}

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

/* Hero Section */
.page-registration-guide-step-by-step__hero {
    background: linear-gradient(135deg, #1A237E, #3F51B5); /* Main color gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-registration-guide-step-by-step__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107; /* Auxiliary color for emphasis, WCAG AA contrast with #1A237E is 7.2:1 */
}

.page-registration-guide-step-by-step__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0; /* Light grey on dark background, WCAG AA contrast with #1A237E is 8.9:1 */
}

/* General Buttons */
.page-registration-guide-step-by-step__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1em;
}

.page-registration-guide-step-by-step__btn--primary {
    background-color: #FFC107; /* Auxiliary color */
    color: #1A237E; /* Main color for text, WCAG AA contrast with #FFC107 is 7.2:1 */
    border: 2px solid #FFC107;
}

.page-registration-guide-step-by-step__btn--primary:hover {
    background-color: #e0ac00; /* Darker auxiliary */
    border-color: #e0ac00;
    transform: translateY(-2px);
}

.page-registration-guide-step-by-step__btn--secondary {
    background-color: #1A237E; /* Main color */
    color: #FFC107; /* Auxiliary color for text, WCAG AA contrast with #1A237E is 7.2:1 */
    border: 2px solid #1A237E;
}

.page-registration-guide-step-by-step__btn--secondary:hover {
    background-color: #0d124b; /* Darker main color */
    border-color: #0d124b;
    transform: translateY(-2px);
}

.page-registration-guide-step-by-step__btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
.page-registration-guide-step-by-step__introduction,
.page-registration-guide-step-by-step__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: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-registration-guide-step-by-step__section-title {
    font-size: 2.2em;
    color: #1A237E; /* Main color, WCAG AA contrast with #ffffff is 11.2:1 */
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.page-registration-guide-step-by-step__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107; /* Auxiliary color */
    border-radius: 2px;
}

.page-registration-guide-step-by-step__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555; /* Dark grey on white, WCAG AA contrast with #ffffff is 7.2:1 */
}

/* Step Items */
.page-registration-guide-step-by-step__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 10px;
    background-color: #fefefe;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-registration-guide-step-by-step__step-item:hover {
    transform: translateY(-5px);
}

.page-registration-guide-step-by-step__step-title {
    font-size: 1.8em;
    color: #1A237E; /* Main color, WCAG AA contrast with #fefefe is 11.2:1 */
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-registration-guide-step-by-step__step-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #FFC107; /* Auxiliary color */
    border-radius: 2px;
}

.page-registration-guide-step-by-step__step-item p {
    text-align: center;
    margin-bottom: 15px;
    max-width: 700px;
    color: #444444; /* Dark grey on white, WCAG AA contrast with #fefefe is 8.7:1 */
}

.page-registration-guide-step-by-step__step-item ul {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 20px;
    list-style-type: disc;
    padding-left: 25px;
    color: #444444;
}

.page-registration-guide-step-by-step__step-item ul li {
    margin-bottom: 8px;
}

.page-registration-guide-step-by-step__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eeeeee;
}

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

.page-registration-guide-step-by-step__benefit-item {
    text-align: center;
    padding: 30px;
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide-step-by-step__benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-registration-guide-step-by-step__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-registration-guide-step-by-step__benefit-heading {
    font-size: 1.4em;
    color: #1A237E; /* Main color, WCAG AA contrast with #fefefe is 11.2:1 */
    margin-bottom: 15px;
}

/* FAQ Section (Accordion) */
.page-registration-guide-step-by-step__faq {
    background-color: #f0f2f5; /* Slightly darker background for contrast */
}

.page-registration-guide-step-by-step__accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-guide-step-by-step__accordion-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-registration-guide-step-by-step__accordion-header {
    padding: 20px 25px;
    font-size: 1.2em;
    color: #1A237E; /* Main color, WCAG AA contrast with #ffffff is 11.2:1 */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.page-registration-guide-step-by-step__accordion-header:hover {
    background-color: #f5f5f5;
}

.page-registration-guide-step-by-step__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
    color: #FFC107; /* Auxiliary color */
}

.page-registration-guide-step-by-step__accordion-item.active .page-registration-guide-step-by-step__accordion-header::after {
    transform: rotate(45deg);
}

.page-registration-guide-step-by-step__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #555555; /* Dark grey on white, WCAG AA contrast with #ffffff is 7.2:1 */
}

.page-registration-guide-step-by-step__accordion-item.active .page-registration-guide-step-by-step__accordion-content {
    max-height: 200px; /* Adjust as needed, ensure content fits */
    padding: 15px 25px 20px;
}

/* Bottom CTA */
.page-registration-guide-step-by-step__cta-bottom {
    background: linear-gradient(45deg, #1A237E, #3F51B5); /* Main color gradient */
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.page-registration-guide-step-by-step__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFC107; /* Auxiliary color, WCAG AA contrast with #1A237E is 7.2:1 */
}

.page-registration-guide-step-by-step__cta-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0; /* Light grey on dark background, WCAG AA contrast with #1A237E is 8.9:1 */
}

/* Floating Promotion Button */
.page-registration-guide-step-by-step__floating-promo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.page-registration-guide-step-by-step__floating-btn {
    background-color: #FFC107; /* Auxiliary color */
    color: #1A237E; /* Main color for text, WCAG AA contrast with #FFC107 is 7.2:1 */
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-registration-guide-step-by-step__floating-btn:hover {
    background-color: #e0ac00; /* Darker auxiliary */
    transform: translateY(-3px);
}

.page-registration-guide-step-by-step__floating-icon {
    margin-right: 10px;
    font-size: 1.5em;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-registration-guide-step-by-step__hero-title {
        font-size: 2.2em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.8em;
    }
    .page-registration-guide-step-by-step__step-title {
        font-size: 1.5em;
    }
    .page-registration-guide-step-by-step__benefit-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-registration-guide-step-by-step__hero {
        padding: 60px 0;
    }
    .page-registration-guide-step-by-step__hero-title {
        font-size: 1.8em;
    }
    .page-registration-guide-step-by-step__hero-subtitle {
        font-size: 1em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.6em;
    }
    .page-registration-guide-step-by-step__step-item {
        padding: 20px;
    }
    .page-registration-guide-step-by-step__floating-promo {
        bottom: 20px;
        right: 20px;
    }
    .page-registration-guide-step-by-step__floating-btn {
        padding: 12px 18px;
        font-size: 1em;
    }
    .page-registration-guide-step-by-step__floating-icon {
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .page-registration-guide-step-by-step__hero {
        padding: 40px 0;
    }
    .page-registration-guide-step-by-step__hero-title {
        font-size: 1.5em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.4em;
    }
    .page-registration-guide-step-by-step__step-title {
        font-size: 1.3em;
    }
    .page-registration-guide-step-by-step__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-registration-guide-step-by-step__benefit-grid {
        grid-template-columns: 1fr;
    }
    .page-registration-guide-step-by-step__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-registration-guide-step-by-step__accordion-content {
        padding: 10px 20px 15px;
    }
    .page-registration-guide-step-by-step__cta-title {
        font-size: 1.8em;
    }
}