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

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

.page-registration-login-step-by-step-guide .text-center {
    text-align: center;
}

.page-registration-login-step-by-step-guide .mt-4 {
    margin-top: 1.5rem;
}

/* Hero Section */
.page-registration-login-step-by-step-guide .hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-login-step-by-step-guide .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23004488" stroke-width="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.1;
    z-index: 0;
}

.page-registration-login-step-by-step-guide .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-registration-login-step-by-step-guide .hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00;
}

.page-registration-login-step-by-language .hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-login-step-by-step-guide .hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-registration-login-step-by-step-guide section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-registration-login-step-by-step-guide section:nth-of-type(even) {
    background-color: #eef4f8; /* Light blue-grey for alternating sections */
}

.page-registration-login-step-by-step-guide .section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Buttons */
.page-registration-login-step-by-step-guide .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
}

.page-registration-login-step-by-step-guide .btn-primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-registration-login-step-by-step-guide .btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-registration-login-step-by-step-guide .btn-secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
}

.page-registration-login-step-by-step-guide .btn-secondary:hover {
    background-color: #002244;
    border-color: #002244;
    transform: translateY(-2px);
}

.page-registration-login-step-by-step-guide .btn-lg {
    padding: 15px 30px;
    font-size: 1.2em;
}

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

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

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

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

.page-registration-login-step-by-step-guide .feature-heading {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-registration-login-step-by-step-guide .feature-text {
    font-size: 1em;
    color: #666;
}

/* Step-by-Step Guide */
.page-registration-login-step-by-step-guide .step-by-step-guide {
    margin-top: 40px;
}

.page-registration-login-step-by-step-guide .guide-step {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-registration-login-step-by-step-guide .step-number {
    background-color: #FFCC00;
    color: #003366;
    font-size: 2em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-registration-login-step-by-step-guide .step-heading {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-registration-login-step-by-step-guide .step-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    max-width: 700px;
}

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

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

.page-registration-login-step-by-step-guide .guide-step ul li {
    background-color: #f0f8ff; /* Lightest blue for list items */
    border-left: 4px solid #003366;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #333;
    font-size: 1em;
}

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

/* App Download Section */
.page-registration-login-step-by-step-guide .section-app-download {
    background: #003366;
    color: #fff;
    text-align: center;
}

.page-registration-login-step-by-step-guide .section-app-download .section-title {
    color: #FFCC00;
}

.page-registration-login-step-by-step-guide .section-app-download .section-description {
    color: #e0e0e0;
}

.page-registration-login-step-by-step-guide .section-app-download ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-registration-login-step-by-step-guide .section-app-download ul li {
    background-color: #004488;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: left;
    font-size: 1.1em;
    position: relative;
    padding-left: 40px;
}

.page-registration-login-step-by-step-guide .section-app-download ul li::before {
    content: '✓';
    color: #FFCC00;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 1.2em;
}

.page-registration-login-step-by-step-guide .app-download-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-registration-login-step-by-step-guide .qr-code-image {
    width: 180px;
    height: 180px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-registration-login-step-by-step-guide .section-faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.page-registration-login-step-by-step-guide .faq-question {
    font-size: 1.3em;
    color: #003366;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f8ff;
    border-bottom: 1px solid #e0e0e0;
}

.page-registration-login-step-by-step-guide .faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

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

.page-registration-login-step-by-step-guide .faq-answer {
    font-size: 1em;
    color: #555;
    padding: 0 20px 20px 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-registration-login-step-by-step-guide .faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

/* Safety Tips Section */
.page-registration-login-step-by-step-guide .section-safety-tips {
    background-color: #eef4f8;
}

.page-registration-login-step-by-step-guide .section-safety-tips ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
}

.page-registration-login-step-by-step-guide .section-safety-tips ul li {
    background-color: #fff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFCC00;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #444;
}

.page-registration-login-step-by-step-guide .section-safety-tips ul li strong {
    color: #003366;
}

.page-registration-login-step-by-step-guide .safety-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-registration-login-step-by-step-guide .section-call-to-action {
    background: linear-gradient(135deg, #003366, #004488);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-registration-login-step-by-step-guide .section-call-to-action .section-title {
    color: #FFCC00;
    margin-bottom: 25px;
}

.page-registration-login-step-by-step-guide .section-call-to-action .section-description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

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

    .page-registration-login-step-by-step-guide .hero-subtitle {
        font-size: 1em;
    }

    .page-registration-login-step-by-step-guide .section-title {
        font-size: 1.8em;
    }

    .page-registration-login-step-by-step-guide .section-description,
    .page-registration-login-step-by-step-guide .step-text,
    .page-registration-login-step-by-step-guide .feature-text,
    .page-registration-login-step-by-step-guide .faq-answer {
        font-size: 0.95em;
    }

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

    .page-registration-login-step-by-step-guide .btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .page-registration-login-step-by-step-guide .app-download-cta {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-registration-login-step-by-step-guide .hero-section,
    .page-registration-login-step-by-step-guide section {
        padding: 40px 0;
    }

    .page-registration-login-step-by-step-guide .hero-title {
        font-size: 1.8em;
    }

    .page-registration-login-step-by-step-guide .section-title {
        font-size: 1.6em;
    }

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

    .page-registration-login-step-by-step-guide .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .page-registration-login-step-by-step-guide .faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-registration-login-step-by-step-guide .btn-lg {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}