/* style/registration-tutorial-red88-password-reset.css */
.page-registration-tutorial-red88-password-reset {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #36454F; /* Charcoal Grey for body text */
    background-color: #f8f8f8;
}

.page-registration-tutorial-red88-password-reset .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-tutorial-red88-password-reset .hero-section {
    background: linear-gradient(135deg, #DC143C, #36454F);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-registration-tutorial-red88-password-reset .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-registration-tutorial-red88-password-reset .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-registration-tutorial-red88-password-reset .content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-registration-tutorial-red88-password-reset .section-title {
    font-size: 2.5em;
    color: #DC143C; /* Crimson for main titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-registration-tutorial-red88-password-reset .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #DC143C;
    border-radius: 2px;
}

.page-registration-tutorial-red88-password-reset .subsection-title {
    font-size: 1.8em;
    color: #36454F; /* Charcoal Grey for subtitles */
    margin-top: 35px;
    margin-bottom: 20px;
    border-left: 5px solid #DC143C;
    padding-left: 15px;
}

.page-registration-tutorial-red88-password-reset p {
    margin-bottom: 1em;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-registration-tutorial-red88-password-reset ul,
.page-registration-tutorial-red88-password-reset ol {
    margin-bottom: 1em;
    padding-left: 25px;
}

.page-registration-tutorial-red88-password-reset ul li,
.page-registration-tutorial-red88-password-reset ol li {
    margin-bottom: 0.8em;
    font-size: 1.05em;
}

.page-registration-tutorial-red88-password-reset ul.tips-list li::before {
    content: '✅';
    margin-right: 10px;
}

.page-registration-tutorial-red88-password-reset ul.security-measures li::before {
    content: '🛡️';
    margin-right: 10px;
}

.page-registration-tutorial-red88-password-reset a {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
}

.page-registration-tutorial-red88-password-reset a:hover {
    text-decoration: underline;
    color: #9a0e2a; /* Darker Crimson for hover */
}

.page-registration-tutorial-red88-password-reset .btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-registration-tutorial-red88-password-reset .btn-primary {
    background-color: #DC143C; /* Crimson */
    color: #ffffff;
    border: 2px solid #DC143C;
}

.page-registration-tutorial-red88-password-reset .btn-primary:hover {
    background-color: #9a0e2a; /* Darker Crimson */
    border-color: #9a0e2a;
    transform: translateY(-2px);
}

.page-registration-tutorial-red88-password-reset .btn-secondary {
    background-color: #36454F; /* Charcoal Grey */
    color: #ffffff;
    border: 2px solid #36454F;
}

.page-registration-tutorial-red88-password-reset .btn-secondary:hover {
    background-color: #1a2228; /* Even darker Charcoal Grey */
    border-color: #1a2228;
    transform: translateY(-2px);
}

.page-registration-tutorial-red88-password-reset .cta-buttons {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-registration-tutorial-red88-password-reset figure {
    margin: 30px 0;
    text-align: center;
}

.page-registration-tutorial-red88-password-reset .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-registration-tutorial-red88-password-reset figcaption {
    font-style: italic;
    color: #555;
    margin-top: 10px;
    font-size: 0.95em;
}

.page-registration-tutorial-red88-password-reset .faq-item {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-registration-tutorial-red88-password-reset .faq-question {
    font-size: 1.3em;
    color: #DC143C;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-registration-tutorial-red88-password-reset .faq-answer {
    font-size: 1.05em;
    color: #36454F;
    padding-top: 5px;
    /* display: none; /* Initially hidden, JS will toggle */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-tutorial-red88-password-reset .hero-title {
        font-size: 2.5em;
    }

    .page-registration-tutorial-red88-password-reset .hero-subtitle {
        font-size: 1.2em;
    }

    .page-registration-tutorial-red88-password-reset .section-title {
        font-size: 2em;
    }

    .page-registration-tutorial-red88-password-reset .subsection-title {
        font-size: 1.5em;
    }

    .page-registration-tutorial-red88-password-reset .btn {
        padding: 12px 24px;
        font-size: 1em;
        margin: 8px;
    }

    .page-registration-tutorial-red88-password-reset .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-registration-tutorial-red88-password-reset .hero-title {
        font-size: 2em;
    }

    .page-registration-tutorial-red88-password-reset .hero-subtitle {
        font-size: 1em;
    }

    .page-registration-tutorial-red88-password-reset .section-title {
        font-size: 1.8em;
    }

    .page-registration-tutorial-red88-password-reset .subsection-title {
        font-size: 1.3em;
    }

    .page-registration-tutorial-red88-password-reset .btn {
        width: 100%;
        margin: 5px 0;
    }
}