/* =========================================================
   WYWALLET GUIDE - PART 1 CSS
   Part 1 + Part 2 + Common Layout
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f1e8;
    color: #31535a;
    line-height: 1.7;
    font-size: 16px;
}

/* Main page wrapper */
.page-wrapper {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    background: #fffdf8;
    min-height: 100vh;
}

/* Main content */
.container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 30px 22px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: #073f35;
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 4px solid #e8b92e;
}

.site-header h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 800;
    color: #ffffff;
}

.site-header p {
    color: #e9f1ed;
    font-size: 16px;
    margin: 0;
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
    padding: 35px 25px;
    text-align: center;
    background: #fffdf8;
}

.hero h1,
.hero h2 {
    color: #063f35;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 38px;
}

.hero h2 {
    font-size: 28px;
}

.hero p {
    max-width: 680px;
    margin: 0 auto 15px;
    color: #49666b;
    font-size: 17px;
}

/* =========================================================
   SECTION TITLE
   ========================================================= */

.section-title {
    color: #073f35;
    font-size: 28px;
    font-weight: 800;
    margin: 35px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5b92f;
}

.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #e5b92f;
    margin-top: 8px;
}

/* =========================================================
   CONTENT CARD
   ========================================================= */

.content-card {
    background: #fffdf8;
    border: 1px solid #e3ded2;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 22px;
    box-shadow: 0 5px 18px rgba(31, 53, 49, 0.05);
}

.content-card h2,
.content-card h3 {
    color: #063f35;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px;
}

.content-card h2 {
    font-size: 24px;
}

.content-card h3 {
    font-size: 21px;
}

.content-card p {
    color: #456269;
    margin-bottom: 14px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   IMPORTANT BOX
   ========================================================= */

.info-box {
    background: #f9f5e9;
    border-left: 4px solid #e6b72c;
    border-radius: 8px;
    padding: 18px 20px;
    margin: 20px 0;
}

.info-box h3 {
    color: #073f35;
    margin-bottom: 8px;
}

.info-box p {
    margin-bottom: 0;
}

/* =========================================================
   LISTS
   ========================================================= */

.content-card ul,
.content-card ol {
    margin: 12px 0 15px 25px;
    padding: 0;
}

.content-card li {
    margin-bottom: 9px;
    color: #456269;
}

.content-card li::marker {
    color: #e3a927;
}

/* =========================================================
   CHECK LIST
   ========================================================= */

.check-list {
    list-style: none;
    margin-left: 0 !important;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #073f35;
    font-weight: 800;
}

/* =========================================================
   WARNING BOX
   ========================================================= */

.warning-box {
    background: #fff8e5;
    border: 1px solid #e8c765;
    border-radius: 12px;
    padding: 18px;
    margin: 20px 0;
}

.warning-box strong {
    color: #b65a16;
}

/* =========================================================
   DANGER / SECURITY BOX
   ========================================================= */

.security-box {
    background: #fff5f1;
    border-left: 4px solid #c85b35;
    border-radius: 10px;
    padding: 18px 20px;
    margin: 20px 0;
}

.security-box h3 {
    color: #9e3d20;
    margin-bottom: 8px;
}

.security-box p {
    color: #5c4b47;
}

/* =========================================================
   TABLE
   ========================================================= */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.content-card table {
    width: 100%;
    border-collapse: collapse;
    background: #fffdf8;
}

.content-card th {
    background: #073f35;
    color: #ffffff;
    padding: 13px;
    text-align: left;
    font-weight: 700;
}

.content-card td {
    padding: 13px;
    border: 1px solid #ddd8cd;
    color: #456269;
}

.content-card tr:nth-child(even) td {
    background: #faf7ef;
}

/* =========================================================
   BUTTON
   ========================================================= */

.btn {
    display: inline-block;
    padding: 11px 22px;
    background: #073f35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn:hover {
    background: #0a5749;
    transform: translateY(-1px);
}

.btn-gold {
    background: #e4b52b;
    color: #073f35;
}

.btn-gold:hover {
    background: #d5a71f;
}

/* =========================================================
   LINKS
   ========================================================= */

a {
    color: #c75b1c;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    color: #073f35;
    text-decoration: underline;
}

/* =========================================================
   HIGHLIGHT TEXT
   ========================================================= */

.highlight {
    color: #c75b1c;
    font-weight: 700;
}

.green-text {
    color: #073f35;
    font-weight: 700;
}

.gold-text {
    color: #b58a10;
    font-weight: 700;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    margin-top: 35px;
}

.faq-item {
    border-bottom: 1px solid #ddd8cd;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 18px 5px;
    background: transparent;
    border: 0;
    color: #073f35;
    text-align: left;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.faq-question:hover {
    color: #c75b1c;
}

.faq-icon {
    color: #c75b1c;
    font-size: 22px;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 5px 18px;
    color: #49666b;
}

.faq-answer p {
    margin-bottom: 10px;
}

/* =========================================================
   FAQ CARD
   ========================================================= */

.faq-card {
    background: #fffdf8;
    border: 1px solid #e1dcd0;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 5px 18px rgba(31, 53, 49, 0.04);
}

.faq-card h2 {
    color: #063f35;
    font-size: 26px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e4b52b;
}

/* =========================================================
   GLOSSARY
   ========================================================= */

.glossary {
    background: #fffdf8;
    border: 1px solid #e2ddd1;
    border-radius: 18px;
    padding: 25px;
    margin: 25px 0;
}

.glossary h2 {
    color: #073f35;
    font-size: 25px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e4b52b;
}

.glossary ul {
    margin: 0;
    padding-left: 22px;
}

.glossary li {
    margin-bottom: 10px;
    color: #49666b;
}

.glossary strong {
    color: #073f35;
}

/* =========================================================
   MOBILE - PART 1
   ========================================================= */

@media (max-width: 768px) {

    body {
        font-size: 15px;
    }

    .container {
        padding: 22px 16px;
    }

    .hero {
        padding: 28px 18px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .content-card {
        padding: 20px;
        border-radius: 15px;
    }

    .content-card h2 {
        font-size: 21px;
    }

    .content-card h3 {
        font-size: 19px;
    }

    .faq-card {
        padding: 18px;
        border-radius: 15px;
    }

    .faq-card h2 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 3px;
    }

    .glossary {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    .site-header h1 {
        font-size: 27px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 21px;
    }

    .container {
        padding: 18px 12px;
    }

    .content-card {
        padding: 17px;
    }

    .info-box,
    .warning-box,
    .security-box {
        padding: 15px;
    }

    .content-card table {
        font-size: 13px;
    }

    .content-card th,
    .content-card td {
        padding: 9px;
    }
}
/* =========================================================
   WYWALLET GUIDE - PART 2 CSS
   Part 3 + Part 4 + Footer + Final Responsive CSS
   ========================================================= */

/* =========================================================
   STEP / GUIDE CARDS
   ========================================================= */

.step-card {
    position: relative;
    background: #fffdf8;
    border: 1px solid #e1dcd0;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 22px;
    box-shadow: 0 5px 18px rgba(31, 53, 49, 0.05);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #073f35;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.step-card h2,
.step-card h3 {
    color: #073f35;
    margin-bottom: 12px;
    line-height: 1.35;
}

.step-card p {
    color: #49666b;
    margin-bottom: 12px;
}

/* =========================================================
   FIRST WEEK SECTION
   ========================================================= */

.first-week {
    background: #fffdf8;
    border: 1px solid #e1dcd0;
    border-radius: 18px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 5px 18px rgba(31, 53, 49, 0.04);
}

.first-week h2 {
    color: #073f35;
    font-size: 26px;
    padding-bottom: 10px;
    margin-bottom: 18px;
    border-bottom: 2px solid #e4b52b;
}

.first-week ul {
    margin: 0;
    padding-left: 24px;
}

.first-week li {
    margin-bottom: 12px;
    color: #49666b;
}

.first-week li::marker {
    color: #073f35;
    font-size: 14px;
}

/* =========================================================
   USING COMPUTER / COMPARISON / REGULATORY SECTIONS
   ========================================================= */

.guide-card {
    background: #fffdf8;
    border: 1px solid #e1dcd0;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 22px;
    box-shadow: 0 5px 18px rgba(31, 53, 49, 0.04);
}

.guide-card h2 {
    color: #073f35;
    font-size: 25px;
    line-height: 1.35;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e4b52b;
}

.guide-card h3 {
    color: #073f35;
    font-size: 20px;
    margin-bottom: 10px;
}

.guide-card p {
    color: #49666b;
    margin-bottom: 13px;
}

.guide-card p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   REPORT FAKE PAGE
   ========================================================= */

.report-card {
    background: #fffdf8;
    border: 1px solid #e1dcd0;
    border-radius: 18px;
    padding: 25px;
    margin: 25px 0;
}

.report-card h2 {
    color: #073f35;
    font-size: 25px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e4b52b;
}

.report-card p {
    color: #49666b;
}

/* =========================================================
   DISCLAIMER
   ========================================================= */

.disclaimer {
    background: #fffdf8;
    border: 1px solid #e1dcd0;
    border-radius: 18px;
    padding: 25px;
    margin: 25px 0;
}

.disclaimer h2 {
    color: #073f35;
    font-size: 25px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e4b52b;
}

.disclaimer p {
    color: #49666b;
    margin-bottom: 15px;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.disclaimer a {
    color: #c75b1c;
    font-weight: 700;
}

/* =========================================================
   CONTACT / EMAIL
   ========================================================= */

.contact-email {
    color: #c75b1c;
    font-weight: 800;
    word-break: break-word;
}

/* =========================================================
   FAQ EXTENDED
   ========================================================= */

.faq-wrapper {
    background: #fffdf8;
    border: 1px solid #e1dcd0;
    border-radius: 18px;
    padding: 20px 22px;
    margin: 25px 0;
    box-shadow: 0 5px 18px rgba(31, 53, 49, 0.04);
}

.faq-wrapper > h2 {
    color: #073f35;
    font-size: 27px;
    line-height: 1.3;
    padding-bottom: 12px;
    margin-bottom: 5px;
    border-bottom: 2px solid #e4b52b;
}

.faq-row {
    border-bottom: 1px solid #ddd8cd;
}

.faq-row:last-child {
    border-bottom: none;
}

.faq-row button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border: 0;
    background: transparent;
    padding: 18px 4px;
    cursor: pointer;
    color: #073f35;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
}

.faq-row button:hover {
    color: #c75b1c;
}

.faq-row .plus {
    color: #c75b1c;
    font-size: 21px;
    line-height: 1;
    flex-shrink: 0;
}

.faq-row .answer {
    display: none;
    padding: 0 4px 18px;
    color: #49666b;
}

.faq-row.active .answer {
    display: block;
}

.faq-row.active .plus {
    transform: rotate(45deg);
}

/* =========================================================
   META / LAST UPDATED
   ========================================================= */

.page-meta {
    max-width: 760px;
    margin: 20px auto;
    padding: 0 22px;
    color: #49666b;
    font-size: 15px;
    line-height: 1.7;
}

.page-meta strong {
    color: #073f35;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    background: #06382f;
    color: #ffffff;
    margin-top: 40px;
    border-top: 4px solid #e4b52b;
}

.footer-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-nav {
    background: #0b4b3e;
    padding: 20px 15px;
    text-align: center;
}

.footer-nav a {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin: 5px 8px;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #e4b52b;
    text-decoration: none;
}

.footer-bottom {
    padding: 17px 10px 20px;
    text-align: center;
    border-top: 1px solid rgba(228, 181, 43, 0.5);
}

.footer-bottom p {
    color: #edf4f0;
    font-size: 14px;
    margin: 0;
}

.footer-bottom strong {
    color: #ffffff;
}

/* =========================================================
   FOOTER LEGAL LINKS
   ========================================================= */

.footer-legal {
    margin-top: 8px;
}

.footer-legal a {
    color: #e4b52b;
    margin: 0 4px;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #073f35;
    color: #ffffff;
    border-radius: 50%;
    border: 2px solid #e4b52b;
    text-decoration: none;
    font-size: 19px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 999;
}

.back-to-top:hover {
    background: #e4b52b;
    color: #073f35;
    text-decoration: none;
}

/* =========================================================
   CONTENT SPACING
   ========================================================= */

main > section {
    margin-bottom: 25px;
}

p + ul,
p + ol {
    margin-top: 5px;
}

/* =========================================================
   MOBILE - PART 2
   ========================================================= */

@media (max-width: 768px) {

    .step-card,
    .guide-card,
    .first-week,
    .report-card,
    .disclaimer {
        padding: 20px;
        border-radius: 15px;
    }

    .guide-card h2,
    .report-card h2,
    .disclaimer h2,
    .first-week h2 {
        font-size: 22px;
    }

    .faq-wrapper {
        padding: 17px;
        border-radius: 15px;
    }

    .faq-wrapper > h2 {
        font-size: 23px;
    }

    .faq-row button {
        font-size: 15px;
        padding: 16px 2px;
    }

    .footer-inner {
        padding: 0 15px;
    }

    .footer-nav {
        padding: 18px 10px;
    }

    .footer-nav a {
        margin: 4px 6px;
    }

    .page-meta {
        padding: 0 16px;
        font-size: 14px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 480px) {

    .step-card,
    .guide-card,
    .first-week,
    .report-card,
    .disclaimer {
        padding: 17px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .guide-card h2,
    .report-card h2,
    .disclaimer h2,
    .first-week h2 {
        font-size: 20px;
    }

    .faq-wrapper {
        padding: 14px;
    }

    .faq-wrapper > h2 {
        font-size: 21px;
    }

    .faq-row button {
        font-size: 14px;
    }

    .faq-row .plus {
        font-size: 19px;
    }

    .footer-nav a {
        font-size: 13px;
        margin: 4px 5px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* =========================================================
   VERY SMALL SCREEN
   ========================================================= */

@media (max-width: 360px) {

    .hero h1 {
        font-size: 23px;
    }

    .hero h2 {
        font-size: 19px;
    }

    .content-card,
    .step-card,
    .guide-card,
    .first-week,
    .report-card,
    .disclaimer {
        padding: 15px;
    }

    .faq-question,
    .faq-row button {
        font-size: 13px;
    }

    .footer-nav a {
        display: block;
        margin: 7px 0;
    }
}