/* style/registration-login-step-by-step.css */

/* General Styles */
.page-registration-login-step-by-step {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-registration-login-step-by-step__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-registration-login-step-by-step__section:nth-of-type(even) {
    background-color: #f2f4f6;
}

.page-registration-login-step-by-step__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

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

.page-registration-login-step-by-step__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #555;
}

/* Hero Section */
.page-registration-login-step-by-step__hero {
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-registration-login-step-by-step__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-login-step-by-by-step__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Buttons */
.page-registration-login-step-by-step__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-registration-login-step-by-step__btn--primary {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-registration-login-step-by-step__btn--primary:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    transform: translateY(-2px);
}

.page-registration-login-step-by-step__btn--secondary {
    background-color: #28a745;
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.page-registration-login-step-by-step__btn--secondary:hover {
    background-color: #1e7e34;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
    transform: translateY(-2px);
}

.page-registration-login-step-by-step__btn--text {
    background: none;
    color: #007bff;
    padding: 10px 0;
    border-radius: 0;
    font-size: 1em;
}

.page-registration-login-step-by-step__btn--text:hover {
    color: #0056b3;
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}

.page-registration-login-step-by-step__btn--large {
    padding: 18px 45px;
    font-size: 1.2em;
}

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

.page-registration-login-step-by-step__feature-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-registration-login-step-by-step__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-registration-login-step-by-step__feature-item p {
    color: #666;
    font-size: 0.95em;
}

/* Step Guide */
.page-registration-login-step-by-step__step-guide {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.page-registration-login-step-by-step__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-registration-login-step-by-step__step-item:nth-child(even) {
    background-color: #eaf6ff; /* Light blue tint */
}

.page-registration-login-step-by-step__step-number {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-registration-login-step-by-step__step-item:nth-child(even) .page-registration-login-step-by-step__step-number {
    background-color: #28a745;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.page-registration-login-step-by-step__step-title {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-registration-login-step-by-step__step-item:nth-child(even) .page-registration-login-step-by-step__step-title {
    color: #28a745;
}

.page-registration-login-step-by-step__step-item p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    max-width: 700px;
}

.page-registration-login-step-by-step__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
}

.page-registration-login-step-by-step__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.page-registration-login-step-by-step__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%2328a745"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05em;
    color: #444;
}

.page-registration-login-step-by-step__list li strong {
    color: #007bff;
}

.page-registration-login-step-by-step__note {
    font-style: italic;
    color: #777;
    margin-top: 20px;
    font-size: 0.95em;
}

/* Next Steps Section */
.page-registration-login-step-by-step__next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-login-step-by-step__next-step-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-registration-login-step-by-step__next-step-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-registration-login-step-by-step__next-step-item p {
    color: #666;
    margin-bottom: 25px;
}

/* FAQ Section */
.page-registration-login-step-by-step__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-login-step-by-step__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-registration-login-step-by-step__faq-question {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.25em;
    color: #007bff;
    cursor: pointer;
    background-color: #eaf6ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-registration-login-step-by-step__faq-question:hover {
    background-color: #d1e7ff;
}

.page-registration-login-step-by-step__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #28a745;
    transition: transform 0.3s ease;
}

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

.page-registration-login-step-by-step__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-registration-login-step-by-step__faq-item.active .page-registration-login-step-by-step__faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 20px 25px;
}

.page-registration-login-step-by-step__faq-answer p {
    font-size: 1em;
    color: #555;
    text-align: left;
    margin-bottom: 0;
}

/* Final CTA Section */
.page-registration-login-step-by-step__section--cta-final {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 15px;
}

.page-registration-login-step-by-step__section-title--light,
.page-registration-login-step-by-step__text-content--light {
    color: #fff;
}

.page-registration-login-step-by-step__section-title--light::after {
    background-color: #fff;
}

.page-registration-login-step-by-step__disclaimer {
    font-size: 0.9em;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-registration-login-step-by-step__hero-title {
        font-size: 3em;
    }
    .page-registration-login-step-by-step__hero-subtitle {
        font-size: 1.3em;
    }
    .page-registration-login-step-by-step__section-title {
        font-size: 2em;
    }
    .page-registration-login-step-by-step__step-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-registration-login-step-by-step__hero {
        padding: 80px 0;
    }
    .page-registration-login-step-by-step__hero-title {
        font-size: 2.5em;
    }
    .page-registration-login-step-by-step__hero-subtitle {
        font-size: 1.1em;
    }
    .page-registration-login-step-by-step__section {
        padding: 40px 0;
    }
    .page-registration-login-step-by-step__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-registration-login-step-by-step__text-content {
        font-size: 1em;
    }
    .page-registration-login-step-by-step__features-grid,
    .page-registration-login-step-by-step__next-steps-grid {
        grid-template-columns: 1fr;
    }
    .page-registration-login-step-by-step__step-item {
        padding: 30px;
    }
    .page-registration-login-step-by-step__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-registration-login-step-by-step__step-title {
        font-size: 1.5em;
    }
    .page-registration-login-step-by-step__step-item p {
        font-size: 1em;
    }
    .page-registration-login-step-by-step__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-registration-login-step-by-step__faq-answer {
        padding: 15px 20px;
    }
    .page-registration-login-step-by-step__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-registration-login-step-by-step__hero-title {
        font-size: 2em;
    }
    .page-registration-login-step-by-step__hero-subtitle {
        font-size: 0.95em;
    }
    .page-registration-login-step-by-step__section-title {
        font-size: 1.5em;
    }
    .page-registration-login-step-by-step__step-title {
        font-size: 1.3em;
    }
    .page-registration-login-step-by-step__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-registration-login-step-by-step__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-registration-login-step-by-step__list li {
        font-size: 0.9em;
        padding-left: 25px;
    }
}