/* esewa_guide.css */

/* Main Container - seamless on white background, no outer page border or gray box */
.guide-container {
    max-width: 680px;
    margin: 36px auto 60px auto;
    padding: 0 1.25rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Document Title */
.doc-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 24px;
    text-align: center;
}

/* Document Headings */
.doc-heading {
    font-size: 24px;
    font-weight: 700;
    color: #c6006f;
    /* Exact Doc Pink */
    line-height: 1.35;
    margin-top: 38px;
    margin-bottom: 14px;
    text-align: center;
}

.doc-subheading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 10px;
    text-align: left;
}

/* Sub-sections for Nested/Sub Points */
.doc-sub-section {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px 22px;
    margin: 20px 0;
}

.doc-sub-section .doc-subheading {
    font-size: 16.5px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 14px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-steps-list {
    padding-left: 6px;
}

.sub-steps-list .doc-step {
    margin-bottom: 12px;
}

.sub-steps-list .doc-step:last-child {
    margin-bottom: 0;
}

/* Standard Paragraphs */
.doc-paragraph {
    font-size: 15px;
    line-height: 1.65;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: justify;
}

/* Bullet list */
.doc-list {
    margin: 0 0 20px 24px;
    padding: 0;
}

.doc-list li {
    font-size: 15px;
    line-height: 1.65;
    color: #1a1a1a;
    margin-bottom: 8px;
    list-style-type: disc;
    text-align: justify;
}

/* Step Items */
.doc-step {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 12px;
    text-align: justify;
}

.step-num {
    color: #c6006f;
    /* Pink step numbers */
    font-weight: 700;
}

.step-bold {
    color: #1a1a1a;
    font-weight: 700;
}

.step-desc {
    color: #1a1a1a;
    font-weight: 400;
}

/* Image Containers - Exact size as in Google Doc (250px) */
.doc-image-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 14px 0 6px 0;
}

.doc-image-center+.doc-image-center {
    margin-top: 14px;
}

.doc-image-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 14px 0 6px 0;
}

.doc-img {
    width: 250px;
    /* Exact width from Google Doc */
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    display: block;
}

.doc-img-wide {
    width: 480px;
    max-width: 100%;
}

/* Note Callout Box */
.doc-note-box {
    background: #fdf2f7;
    border-left: 4px solid #c6006f;
    padding: 12px 18px;
    border-radius: 0 8px 8px 0;
    margin: 16px 0 24px 0;
    font-size: 15px;
    line-height: 1.65;
    color: #333333;
    text-align: justify;
}

.doc-note-box .note-bold {
    color: #c6006f;
    font-weight: 700;
}

/* Image Captions */
.doc-caption {
    font-size: 12px;
    font-style: italic;
    color: #555555;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 22px;
}

/* FAQ Accordion Styles (Matching Main Landing Page) */
.faq-list {
    margin: 16px 0 28px 0;
}

.faq-item {
    background: #FAFAFA;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    background: #F7F7F7;
    border-color: #e5e5e5;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s ease;
    margin: 0;
}

.faq-question:hover {
    color: #c6006f;
}

.faq-icon {
    font-size: 20px;
    color: #c6006f;
    display: inline-block;
    transition: transform 0.3s ease;
    line-height: 1;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 18px 20px;
    color: #555555;
    line-height: 1.65;
    font-size: 15px;
    text-align: justify;
}

.doc-link {
    color: #c6006f;
    text-decoration: underline;
    font-weight: inherit;
    transition: color 0.2s ease;
}

.doc-link:hover {
    color: #a0005a;
}

/* Final Thoughts Card - Modern, Simple & High UX */
.final-thoughts-card {
    margin-top: 36px;
    background: linear-gradient(135deg, #fff7fb 0%, #ffffff 100%);
    border: 1px solid rgba(198, 0, 111, 0.16);
    border-left: 4px solid #c6006f;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(198, 0, 111, 0.04);
}

.final-thoughts-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.final-icon-badge {
    font-size: 18px;
    line-height: 1;
}

.final-thoughts-title {
    font-size: 20px;
    font-weight: 700;
    color: #c6006f;
    margin: 0;
}

.final-thoughts-text {
    font-size: 15px;
    line-height: 1.65;
    color: #2b2b2b;
    margin: 0 0 20px 0;
    text-align: justify;
}

.final-cta-container {
    display: flex;
    align-items: center;
}

.esewa-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #60BB46;
    /* eSewa Green */
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(96, 187, 70, 0.28);
    transition: all 0.25s ease;
}

.esewa-action-btn:hover {
    background-color: #4ea035;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(96, 187, 70, 0.38);
    color: #ffffff;
}

.esewa-action-btn svg {
    transition: transform 0.2s ease;
}

.esewa-action-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .guide-container {
        margin: 24px auto 40px auto;
        padding: 0 1rem;
    }

    .doc-title {
        font-size: 26px;
    }

    .doc-heading {
        font-size: 20px;
    }

    .doc-img {
        width: 250px;
        max-width: 100%;
    }

    .doc-img-wide {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 6px;
    }

    .final-thoughts-card {
        padding: 20px 18px;
    }
}