/* 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: #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, #007bff 0%, #0056b3 100%); /* Darker blue gradient for depth */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-registration-guide-step-by-step__hero-subtitle {
    font-size: 1.25em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e9ecef;
}

.page-registration-guide-step-by-step__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-registration-guide-step-by-step__btn--primary {
    background-color: #ffc107; /* Auxiliary color for CTA */
    color: #000; /* High contrast text for auxiliary color */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-registration-guide-step-by-step__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-registration-guide-step-by-step__btn--secondary {
    background-color: #007bff; /* Primary color for secondary CTA */
    color: #fff; /* White text for primary color */
    border: 2px solid #007bff;
}

.page-registration-guide-step-by-step__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
}

.page-registration-guide-step-by-step__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-registration-guide-step-by-step__section:nth-of-type(odd) {
    background-color: #f0f2f5;
}

.page-registration-guide-step-by-step__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-registration-guide-step-by-by-step__subtitle {
    font-size: 1.6em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-registration-guide-step-by-step__feature-item {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide-step-by-step__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

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

.page-registration-guide-step-by-step__feature-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

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

.page-registration-guide-step-by-step__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #495057;
}

.page-registration-guide-step-by-step__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc107; /* Auxiliary color for list checks */
    font-weight: bold;
    font-size: 1.2em;
}

.page-registration-guide-step-by-step__step-by-step-guide {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-registration-guide-step-by-step__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    padding-left: 80px; /* Space for step number */
}

.page-registration-guide-step-by-step__step-number {
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #007bff; /* Primary color for step number */
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-registration-guide-step-by-step__step-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

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

.page-registration-guide-step-by-step__text-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-registration-guide-step-by-step__text-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.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: #007bff;
    margin-bottom: 10px;
}

.page-registration-guide-step-by-step__faq-answer {
    color: #555;
    font-size: 1.05em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-registration-guide-step-by-step__hero-title {
        font-size: 2.5em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.8em;
    }
    .page-registration-guide-step-by-step__step-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-registration-guide-step-by-step__hero {
        padding: 60px 0;
    }
    .page-registration-guide-step-by-step__hero-title {
        font-size: 2em;
    }
    .page-registration-guide-step-by-step__hero-subtitle {
        font-size: 1.1em;
    }
    .page-registration-guide-step-by-step__section {
        padding: 40px 0;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.6em;
    }
    .page-registration-guide-step-by-step__features-grid {
        grid-template-columns: 1fr;
    }
    .page-registration-guide-step-by-step__step-item {
        padding-left: 20px; /* Adjust for smaller screens */
        padding-top: 80px;
    }
    .page-registration-guide-step-by-step__step-number {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }
    .page-registration-guide-step-by-step__step-title {
        text-align: center;
    }
    .page-registration-guide-step-by-step__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-registration-guide-step-by-step__hero-title {
        font-size: 1.8em;
    }
    .page-registration-guide-step-by-step__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-registration-guide-step-by-step__section-title {
        font-size: 1.4em;
    }
}