/* TOOLS (FIXED DESIGN) */
.tools-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:35px;
}
.tool-card{
    border-radius:16px;
    padding:25px 20px;
    background:#ffffff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
    transition:.35s;
    cursor:pointer;
}
.tool-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}
.tool-card img{
    width:56px;
    height:56px;
    margin-bottom:14px;
}
.tool-card h3{
    font-family:Poppins;
    font-size:17px;
    margin-bottom:8px;
    color:#1e293b;
}
.tool-card p{
    font-size:14px;
    color:#475569;
}

/* Editorial FAQ – Professional Style */
.faq-section{
    max-width: 960px;
    margin: 90px auto;
    padding: 0 22px;
}

.faq-section h2{
    font-family: Inter, system-ui, -apple-system;
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 48px;
}

/* Question */
.faq-question{
    font-family: Inter, system-ui, -apple-system;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a; /* deep editorial blue */
    margin: 64px 0 18px;
    line-height: 1.3;
}

/* Answer */
.faq-answer{
    font-family: Inter, system-ui, -apple-system;
    font-size: 17px;
    line-height: 1.85;
    color: #1f2937;
    max-width: 920px;
}

/* Emphasis */
.faq-answer strong{
    font-weight: 700;
    color: #0f172a;
}

/* Links */
.faq-answer a{
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37,99,235,.35);
}

.faq-answer a:hover{
    color: #1d4ed8;
    border-bottom-color:#1d4ed8;
}

/* Lists (used only when needed) */
.faq-answer ul{
    margin: 18px 0 18px 22px;
}

.faq-answer li{
    margin-bottom: 10px;
    margin-left:20px;
    color:#41007e;
}

/* Highlight callout (optional) */
.faq-highlight{
    background:#f1f5f9;
    border-left:4px solid #2563eb;
    padding:14px 18px;
    margin:22px 0;
    font-size:16px;
}


/* CTA */
.cta{
    background:linear-gradient(135deg,#eff6ff,#dbeafe);
    padding:45px 20px;
    text-align:center;
}
.cta h2{
    font-family:Poppins;
    font-size:28px;
}
.cta a{
    display:inline-block;
    margin-top:15px;
    padding:13px 28px;
    background:#2563eb;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}
.cta a:hover{background:#1d4ed8}


/* Guide / article images */

/* Guide / article images */

.faq-section img{
display:block;
margin:40px auto;

width:100%;
max-width:520px;

height:auto;

border-radius:10px;
box-shadow:0 12px 30px rgba(8, 6, 0, 1.08);
}