/* ============================================================
   GLOBAL STYLES & VARIABLE DEFINITIONS
============================================================ */
:root {
    --primary: #0052cc;
    --primary-hover: #0747a6;
    --secondary: #f97316;
    --secondary-hover: #ea580c;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f1f5f9; 
    color: var(--text-dark); 
    line-height: 1.5;
}

/* ============================================================
   HEADER & NAVIGATION
============================================================ */
.header-top { 
    background-color: #fff; 
    padding: 16px 40px; 
    border-bottom: 1px solid var(--border-color); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 100;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.05);
}
.logo { 
    font-family: 'Outfit', sans-serif; 
    font-size: 26px; 
    font-weight: 800; 
    color: var(--primary); 
    text-decoration: none; 
    letter-spacing: -0.5px;
}
.logo span { color: #c2410c; }
.nav-links a { 
    color: var(--text-dark); 
    text-decoration: none; 
    margin: 0 15px; 
    font-weight: 600; 
    font-size: 14px;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.login-btn { 
    background-color: #f1f5f9; 
    color: var(--text-dark); 
    padding: 8px 20px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 14px;
    transition: background-color 0.2s;
}
.login-btn:hover { background-color: #e2e8f0; }

/* ============================================================
   TICKER BAR (LIVE RATES)
============================================================ */
.ticker-bar {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}
.ticker-bar::-webkit-scrollbar { display: none; }
.ticker-item { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; transition: opacity 0.2s; }
.ticker-item:hover { opacity: 0.8; }
.ticker-title { color: #94a3b8; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.ticker-value { font-weight: 700; color: #f8fafc; }
.ticker-change { font-size: 10px; font-weight: 700; padding: 1px 5px; border-radius: 4px; }
.ticker-up { background-color: rgba(16, 185, 129, 0.15); color: #10b981; }
.ticker-down { background-color: rgba(239, 68, 68, 0.15); color: #ef4444; }
.ticker-neutral { background-color: rgba(148, 163, 184, 0.15); color: #94a3b8; }

/* ============================================================
   LEGAL PAGES STRUCTURE
============================================================ */
.legal-container {
    max-width: 850px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}
.legal-container h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}
.legal-container h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 10px;
    color: var(--text-dark);
}
.legal-container p {
    color: #475569;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}
.legal-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #475569;
    font-size: 15px;
}
.legal-container li { margin-bottom: 8px; }

/* ============================================================
   CONTACT FORM & ALERTS
============================================================ */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.form-group label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.form-group input, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
}
.btn-submit {
    background-color: var(--primary);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s;
    text-align: center;
}
.btn-submit:hover { background-color: var(--primary-hover); }
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background-color: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger { background-color: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================================
   HOMEPAGE (INDEX.PHP) SPECIFIC STYLES
============================================================ */
.hero { 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); 
    color: white; 
    text-align: center; 
    padding: 30px 20px 75px 20px; 
    box-shadow: inset 0 -10px 20px -10px rgba(0,0,0,0.3);
}
.hero h1 { 
    font-family: 'Outfit', sans-serif;
    font-size: 34px; 
    font-weight: 800; 
    margin-top: 0;
    margin-bottom: 20px; 
    letter-spacing: -1px;
    line-height: 1.2;
}
.tab-container { 
    display: inline-flex; 
    background-color: rgba(255,255,255,0.06); 
    padding: 6px; 
    border-radius: 12px; 
    margin-bottom: 35px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.tab-btn { 
    color: rgba(255,255,255,0.8); 
    text-decoration: none; 
    padding: 10px 24px; 
    border-radius: 8px; 
    font-size: 14px; 
    font-weight: 700;
    transition: all 0.2s;
}
.tab-btn.active { 
    background-color: white; 
    color: var(--text-dark); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.calc-wrapper { max-width: 1000px; margin: 0 auto -100px; position: relative; z-index: 10; }
.calc-box { 
    background: white; 
    padding: 24px 30px; 
    border-radius: 16px; 
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); 
    border: 1px solid var(--border-color);
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 15px; 
    flex-wrap: wrap;
}
.calc-input-group { 
    display: flex; 
    flex-direction: column; 
    text-align: left; 
    flex: 1;
    min-width: 180px;
}
.calc-input-group label { 
    font-size: 11px; 
    color: var(--text-muted); 
    margin-bottom: 6px; 
    font-weight: 700;
    text-transform: uppercase;
}
.calc-box input, .calc-box select { 
    padding: 12px 16px; 
    border: 1px solid #cbd5e1; 
    border-radius: 8px; 
    font-size: 15px; 
    width: 100%; 
    outline: none; 
    font-family: inherit;
    transition: border-color 0.2s;
}
.calc-box input:focus, .calc-box select:focus {
    border-color: var(--primary);
}
.btn-calc { 
    background-color: var(--secondary); 
    color: white; 
    padding: 12px 30px; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 15px; 
    font-weight: 700; 
    height: 48px;
    transition: background-color 0.2s;
}
.btn-calc:hover { background-color: var(--secondary-hover); }

/* FAQ Accordion Styling (Moved from index.php) */
.faq-section {
    margin-top: 40px;
    background: white;
    padding: 24px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.faq-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    display: inline-block;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    user-select: none;
}
.faq-question::after {
    content: '+';
    font-size: 18px;
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.2s;
}
.faq-item.active .faq-question::after {
    content: '−';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 250px;
    margin-top: 10px;
}

/* ============================================================
   MAIN CONTAINER & COLUMN LAYOUT
============================================================ */
.container { 
    display: flex; 
    max-width: 1250px; 
    margin: 55px auto 40px auto; 
    padding: 0 20px; 
    width: 100%;
}
.main-content { flex: 3; }
.sidebar { flex: 1; min-width: 280px; }

.page-title { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 5px; }
.date-text { font-size: 12px; color: #475569; margin-bottom: 25px; font-weight: 500; }

/* ============================================================
   PRODUCT CARDS (PUBLIC VIEWS)
============================================================ */
.credit-card { 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    margin-bottom: 20px; 
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05); 
    overflow: hidden; 
    transition: transform 0.2s, box-shadow 0.2s;
}
.credit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
.card-header { 
    background-color: #f8fafc; 
    padding: 10px 20px; 
    border-bottom: 1px solid var(--border-color); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 12px; 
    color: var(--primary); 
    font-weight: 700; 
}
.card-header .sponsor { color: #94a3b8; font-weight: 500; font-size: 11px; }

.card-body { padding: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

.bank-col { width: 20%; min-width: 130px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.logo-container { height: 35px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; width: 100%; }
.bank-col img { max-width: 110px; max-height: 35px; width: auto; height: auto; object-fit: contain; }
.bank-col strong { font-size: 14px; color: var(--text-dark); font-weight: 700; line-height: 1.2; margin-bottom: 2px; }
.bank-col span { font-size: 11px; color: #10b981; font-weight: 700; }

.amount-col, .term-col, .rate-col, .amount-col-total { width: 14%; min-width: 100px; }
.amount-col label, .term-col label, .rate-col label, .amount-col-total label { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; }
.amount-col strong, .term-col strong, .rate-col strong, .amount-col-total strong { font-size: 16px; color: var(--text-dark); font-weight: 700; }
.rate-col strong { color: var(--primary); }

.details-col { width: 100%; border-top: 1px dashed var(--border-color); padding-top: 12px; font-size: 13px; color: #475569; display: flex; align-items: center; justify-content: space-between; }
.details-col p { margin: 0; position: relative; padding-left: 20px; }
.details-col p::before { content: '✓'; position: absolute; left: 0; color: #10b981; font-weight: 800; }

.action-col { display: flex; align-items: center; gap: 15px; }
.btn-apply { 
    display: inline-block; 
    text-align: center; 
    background-color: var(--primary); 
    color: white; 
    padding: 10px 24px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: 700; 
    font-size: 14px; 
    transition: background-color 0.2s; 
}
.btn-apply:hover { background-color: var(--primary-hover); }
.btn-terms { font-size: 13px; color: var(--text-muted); text-decoration: underline; background: none; border: none; cursor: pointer; font-weight: 500; }
.btn-terms:hover { color: var(--text-dark); }

/* ============================================================
   SIDEBAR (VITRIN) & COOKIE BANNER
============================================================ */
.sidebar-title { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; border-bottom: 2px solid var(--primary); padding-bottom: 8px;}
.vitrin-card { 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 8px; 
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.02);
}
.vitrin-header { background-color: var(--primary); color: white; padding: 8px 12px; font-size: 12px; font-weight: 700; display: flex; justify-content: space-between; }
.vitrin-body { padding: 15px; text-align: center; }
.vitrin-amount { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.vitrin-term { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.vitrin-apply { 
    display: block; 
    background-color: var(--secondary); 
    color: white; 
    text-decoration: none; 
    padding: 8px 0; 
    border-radius: 6px; 
    font-size: 13px; 
    font-weight: 700; 
    transition: background 0.2s; 
}
.vitrin-apply:hover { background: var(--secondary-hover); }

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    max-width: 400px;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.15);
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { font-size: 13px; color: #475569; margin: 0; line-height: 1.5; }
.cookie-banner p a { color: var(--primary); text-decoration: underline; font-weight: 600; }
.cookie-buttons { display: flex; gap: 10px; justify-content: flex-end; }
.btn-cookie-accept { background: var(--primary); color: white; border: none; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.btn-cookie-accept:hover { background: var(--primary-hover); }
.btn-cookie-deny { background: #f1f5f9; color: #475569; border: none; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.btn-cookie-deny:hover { background: #e2e8f0; }

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    position: relative;
    animation: modalFade 0.3s ease;
}
@keyframes modalFade {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
}
.close-btn:hover { color: var(--text-dark); }
.modal-header { border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 20px; display: flex; align-items: center; gap: 15px;}
.modal-header img { max-height: 40px; max-width: 100px; object-fit: contain; }
.modal-header h4 { font-weight: 800; font-size: 18px; margin: 0; }
.modal-body p { margin-bottom: 12px; font-size: 14px; color: #475569; }
.modal-body p strong { color: var(--text-dark); }

footer { background: #fff; padding: 30px 20px; text-align: center; border-top: 1px solid var(--border-color); margin-top: 60px; font-size: 13px; color: var(--text-muted); }

/* ============================================================
   BANK PAGE STYLING (Moved from banka.php)
============================================================ */
.bh-hero {
    background: linear-gradient(160deg, #1a2942 0%, #0d1b2e 100%);
    padding: 40px 0 0;
}
.bh-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.bh-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px;
    padding: 10px 22px;
    margin-bottom: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
    min-width: 110px;
}
.bh-logo-pill img {
    max-height: 48px;
    max-width: 150px;
    object-fit: contain;
    display: block;
}
.bh-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -.4px;
}
.bh-tabbar {
    display: flex;
    gap: 3px;
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.bh-tabbar::-webkit-scrollbar { display: none; }
.bh-tab-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: 10px 10px 0 0;
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.12);
    border-bottom: none;
    white-space: nowrap;
    transition: background .18s, color .18s;
    cursor: pointer;
}
.bh-tab-link:hover {
    background: rgba(255,255,255,.16);
    color: #fff;
}
.bh-tab-link.is-active {
    background: #f8fafc;
    color: #0f172a;
    border-color: #e2e8f0;
}
.bh-tab-icon { width: 15px; height: 15px; flex-shrink: 0; }
.bh-body {
    background: #f1f5f9;
    padding: 0 0 60px;
}
.bh-body-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.bh-statcard {
    background: #fff;
    border-radius: 0 16px 16px 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15,23,42,.07);
    overflow: hidden;
    margin-bottom: 28px;
}
.bh-stats-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f1f5f9;
}
.bh-stat {
    flex: 1;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 14px;
    border-right: 1px solid #f1f5f9;
    transition: background .15s;
}
.bh-stat:last-child { border-right: none; }
.bh-stat:hover { background: #f8fafc; }
.bh-stat-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #94a3b8;
    margin-bottom: 5px;
    line-height: 1.2;
}
.bh-stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}
.bh-stat-val.c-blue  { color: #0052cc; }
.bh-stat-val.c-green { color: #16a34a; }
.bh-stat-sub {
    font-size: 10.5px;
    color: #94a3b8;
    margin-top: 2px;
}
.bh-qr-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.bh-qr-label {
    font-size: 10.5px;
    color: #0052cc;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.3;
    text-align: center;
}
.bh-about-wrap {
    padding: 28px 32px;
}
.bh-about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 14px;
}
.bh-about-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.8;
    margin: 0 0 18px;
}
.bh-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.bh-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
}
.bh-badge.purple { background: #ede9fe; color: #5b21b6; }
.bh-badge.blue   { background: #dbeafe; color: #1d4ed8; }
.bh-badge.green  { background: #dcfce7; color: #166534; }
.bh-badge.cyan   { background: #e0f2fe; color: #0369a1; }

.bh-cta-box {
    background: linear-gradient(135deg, #0052cc 0%, #0747a6 100%);
    border-radius: 14px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.bh-cta-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}
.bh-cta-box p {
    font-size: 13px;
    color: rgba(255,255,255,.78);
    margin: 0;
}
.bh-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0052cc;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s, box-shadow .18s;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.bh-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

.bh-section-head {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 30px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}
.bh-empty {
    background: #fff;
    border: 1.5px dashed #e2e8f0;
    border-radius: 14px;
    text-align: center;
    padding: 36px 20px;
    color: #94a3b8;
    font-size: 14px;
}
.bh-product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15,23,42,.04);
    transition: transform .18s, box-shadow .18s;
}
.bh-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,23,42,.10);
}
.bh-product-body {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}
.bh-prod-logo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    flex-shrink: 0;
    padding: 20px 16px;
    border-right: 1px solid #f1f5f9;
    gap: 8px;
}
.bh-prod-logo-col img {
    max-width: 100px;
    max-height: 34px;
    object-fit: contain;
}
.bh-cat-badge {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 3px 10px;
    border-radius: 20px;
    background: #0052cc;
    color: #fff;
}
.bh-prod-detail-col {
    flex: 1;
    padding: 20px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
    align-items: center;
}
.bh-prod-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.bh-prod-field-lbl {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #94a3b8;
}
.bh-prod-field-val {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.bh-prod-field-val.blue  { color: #0052cc; }
.bh-prod-field-val.green { color: #16a34a; font-size: 1.2rem; font-family: 'Outfit', sans-serif; }
.bh-prod-kampanya {
    width: 100%;
    font-size: 13px;
    color: #64748b;
    padding-top: 12px;
    border-top: 1px dashed #f1f5f9;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bh-prod-kampanya::before { content: '✓'; color: #16a34a; font-weight: 800; flex-shrink: 0; }

.bh-prod-action-col {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}
.bh-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0052cc;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s;
}
.bh-apply-btn:hover { background: #0747a6; }
.bh-apply-btn.green-btn { background: #16a34a; }
.bh-apply-btn.green-btn:hover { background: #15803d; }
.bh-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all .18s;
}
.bh-detail-btn:hover { background: #f8fafc; color: #0f172a; border-color: #cbd5e1; }

.bh-card-visual {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 10px;
    width: 100%;
    max-width: 90px;
    aspect-ratio: 1.586;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.bh-card-visual img { max-width: 100%; max-height: 28px; object-fit: contain; filter: brightness(0) invert(1); }

/* ============================================================
   KREDI_DETAY.PHP SPECIFIC STYLES
============================================================ */
.detail-page-container {
    display: block !important;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.detail-page-container * {
    box-sizing: border-box;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    width: 100%;
}
.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.breadcrumbs span {
    font-size: 11px;
}
.detail-hero-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
}
.hero-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
}
.hero-logo-side {
    flex: 0 0 auto;
}
.detail-hero-logo {
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: inline-block;
}
.detail-hero-logo img {
    max-height: 40px;
    object-fit: contain;
    display: block;
}
.hero-title-side {
    flex: 1 1 0%;
    min-width: 250px;
}
.hero-action-side {
    flex: 0 0 auto;
    min-width: 220px;
}
.premium-btn-apply {
    display: inline-block;
    text-align: center;
    background-color: var(--secondary) !important;
    color: white !important;
    border-radius: 10px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
    width: 100%;
}
.premium-btn-apply:hover {
    background-color: var(--secondary-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}
.stats-item {
    text-align: center;
}
.stats-item label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.stats-item strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}
.stats-item strong.highlight {
    color: var(--primary);
}
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}
.premium-card-with-gap {
    border-radius: 16px; 
    border: 1px solid var(--border-color); 
    background: white;
    padding: 24px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.03);
}
.slider-container {
    margin-bottom: 25px;
}
.slider-container:last-child {
    margin-bottom: 10px;
}
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.slider-header label {
    font-weight: 700;
    font-size: 13px;
    color: #475569;
}
.premium-input {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 50px 12px 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    width: 100%;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
    outline: none;
    background-color: #f8fafc;
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.02);
}
.premium-input:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.12);
}
.custom-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    margin: 20px 0 5px 0;
    cursor: pointer;
}
.custom-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 82, 204, 0.3);
    border: 3px solid white;
    transition: transform 0.1s ease, background-color 0.1s;
}
.custom-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--primary-hover);
}
.summary-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.summary-list-item:last-child {
    border-bottom: none;
}
.summary-list-item label {
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}
.summary-list-item strong {
    color: var(--text-dark);
    font-weight: 700;
}
.table-custom-premium th {
    background-color: #f1f5f9 !important;
    color: #334155 !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #cbd5e1 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.table-custom-premium td {
    font-size: 14px;
    padding: 12px 8px !important;
    border-bottom: 1px solid #f1f5f9;
}
.table-custom-premium tbody tr:hover {
    background-color: #f8fafc !important;
}

/* ============================================================
   DOVIZ.PHP SPECIFIC STYLES
============================================================ */
.ytr-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 15px;
}
.ytr-header-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
.ytr-header-card h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}
.ytr-header-card p {
    font-size: 15px;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}
.ytr-tabs {
    display: flex;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 30px;
    gap: 8px;
}
.ytr-tab-btn {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.ytr-tab-btn:hover {
    background: #f1f5f9;
    color: var(--text-dark);
}
.ytr-tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}
.ytr-table-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.02);
    margin-bottom: 30px;
}
.ytr-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.ytr-table th {
    background-color: #f8fafc;
    padding: 16px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}
.ytr-table td {
    padding: 16px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.ytr-table tr:last-child td {
    border-bottom: none;
}
.ytr-table tr:hover td {
    background-color: #f8fafc;
}
.asset-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
.asset-emoji {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
}
.asset-code {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 15px;
}
.asset-name {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.val-text {
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}
.badge-trend {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-graph {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.btn-graph:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 82, 204, 0.2);
}
.ytr-info-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    line-height: 1.6;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.02);
}
.ytr-info-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 15px;
}
.ytr-info-section p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
}

/* ============================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
============================================================ */
@media (max-width: 991px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-top { padding: 15px 20px; flex-direction: column; gap: 12px; text-align: center; }
    .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 5px; width: 100%; }
    .nav-links a { margin: 0; font-size: 13px; padding: 8px 12px; background: #f1f5f9; border-radius: 20px; transition: background 0.2s; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
    .nav-links a:hover { background: #e2e8f0; color: var(--primary); }
    .hero h1 { font-size: 24px; }
    
    .tab-container {
        display: flex;
        overflow-x: auto;
        width: 100%;
        white-space: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 25px;
        border-radius: 8px;
        padding: 4px;
        box-sizing: border-box;
    }
    .tab-container::-webkit-scrollbar {
        display: none;
    }
    .tab-btn {
        flex: 0 0 auto;
        padding: 8px 16px;
        font-size: 13px;
    }

    .calc-wrapper { width: 100%; padding: 0; box-sizing: border-box; }
    .calc-box { padding: 20px; flex-direction: column; align-items: stretch; width: 100%; box-sizing: border-box; }
    .calc-input-group { min-width: 100%; }
    .btn-calc { width: 100%; }
    .card-body { flex-direction: column; text-align: center; align-items: center; }
    .bank-col, .amount-col, .term-col, .rate-col, .amount-col-total { width: 100%; text-align: center; align-items: center; }
    .details-col { flex-direction: column; gap: 15px; text-align: center; }
    .action-col { width: 100%; justify-content: center; flex-direction: column; }
    .btn-apply { width: 100%; }
    .container { flex-direction: column; margin-top: 40px; }
    .cookie-banner { bottom: 10px; left: 10px; right: 10px; max-width: calc(100% - 20px); }
    .legal-container { padding: 20px; margin: 20px 10px; border-radius: 12px; }
    .ticker-bar { padding: 8px 15px; font-size: 11px; justify-content: flex-start; gap: 20px; }

    /* Bank details view responsive styling */
    .bh-prod-body { flex-direction: column; }
    .bh-prod-logo-col { width: 100%; border-right: none; border-bottom: 1px solid #f1f5f9; flex-direction: row; justify-content: flex-start; padding: 14px 16px; }
    .bh-prod-detail-col { padding: 14px 16px; }
    .bh-prod-action-col { padding: 0 16px 16px; align-items: stretch; }
    .bh-apply-btn { justify-content: center; }
    .bh-stats-row { flex-wrap: wrap; }
    .bh-stat { min-width: 45%; }
    .bh-about-wrap { padding: 20px; }
    .bh-cta-box { flex-direction: column; }

    /* Kredi detay page responsive */
    .hero-flex-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-logo-side, .hero-title-side, .hero-action-side {
        width: 100%;
    }
    .stats-dashboard {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Currency detail page responsive */
    .ytr-header-card {
        padding: 30px 20px;
    }
    .ytr-header-card h1 {
        font-size: 24px;
    }
    .ytr-table th:nth-child(2), 
    .ytr-table td:nth-child(2),
    .ytr-table th:nth-child(4),
    .ytr-table td:nth-child(4) {
        display: none;
    }
    .ytr-table th, .ytr-table td {
        padding: 12px 14px;
    }
}

/* ============================================================
   MAIN LAYOUT GRID & 3-COLUMN SIDEBAR FILTERS (hesap.com tarzı)
   ============================================================ */
.main-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 25px;
    align-items: start;
    width: 100%;
    margin-top: 0;
}

.sidebar-left, .sidebar-right {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding-right: 5px;
}

.sidebar-left::-webkit-scrollbar, .sidebar-right::-webkit-scrollbar {
    width: 4px;
}
.sidebar-left::-webkit-scrollbar-track, .sidebar-right::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.sidebar-left::-webkit-scrollbar-thumb, .sidebar-right::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.filter-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.02);
}

.filter-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-field {
    margin-bottom: 15px;
}

.sidebar-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sidebar-input, .sidebar-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    background: white;
    transition: border-color 0.2s;
}

.sidebar-input:focus, .sidebar-select:focus {
    border-color: var(--primary);
}

.btn-sidebar-calc {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-sidebar-calc:hover {
    background: var(--primary-hover);
}

/* Bank Filter List */
.bank-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 5px;
}
.bank-filter-list::-webkit-scrollbar {
    width: 3px;
}
.bank-filter-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.bank-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.bank-filter-cb {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.bank-filter-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.bank-filter-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    padding: 2px;
    border-radius: 4px;
    background: white;
}

/* Tighter metrics columns for comparison card to fit 3-column layout on desktop */
.main-layout-grid .credit-card .card-body {
    padding: 16px 20px;
    gap: 12px;
}
.main-layout-grid .bank-col {
    width: 22%;
    min-width: 110px;
}
.main-layout-grid .amount-col {
    width: 17%;
    min-width: 80px;
}
.main-layout-grid .term-col {
    width: 10%;
    min-width: 45px;
}
.main-layout-grid .rate-col {
    width: 14%;
    min-width: 60px;
}
.main-layout-grid .amount-col-total {
    width: 22%;
    min-width: 95px;
}

/* Responsive Collapsing */
@media (max-width: 1199px) {
    .main-layout-grid {
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }
    .sidebar-right {
        grid-column: span 2;
        position: static;
        max-height: none;
        overflow-y: visible;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sidebar-right .filter-card {
        flex: 1 1 300px;
    }
}

@media (max-width: 991px) {
    .main-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sidebar-left {
        grid-column: span 1;
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    .sidebar-right {
        grid-column: span 1;
        position: static;
        max-height: none;
        overflow-y: visible;
        flex-direction: column;
    }
}

/* Homepage FAQ (SSS) Accordion Styles - Prefixed to avoid clashes with original CSS */
.home-faq-section {
    max-width: 750px;
    margin: 30px auto;
    padding: 0 15px;
}
.home-faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}
.home-faq-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.home-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.15s ease;
}
.home-faq-item.active {
    border-color: #cbd5e1;
    background: #f8fafc;
}
.home-faq-header {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
}
.home-faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin: 0;
    line-height: 1.4;
    transition: color 0.15s ease;
}
.home-faq-header:hover .home-faq-question {
    color: var(--primary);
}
.home-faq-icon {
    font-size: 9px;
    color: #94a3b8;
    transition: transform 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}
.home-faq-item.active .home-faq-icon {
    transform: rotate(180deg);
    color: #64748b;
}
.home-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s cubic-bezier(0, 1, 0, 1);
}
.home-faq-item.active .home-faq-body {
    max-height: 500px;
    transition: max-height 0.2s cubic-bezier(0.5, 0, 1, 0.5);
}
.home-faq-content {
    padding: 0 16px 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
}
.home-faq-content p {
    margin: 0 0 6px 0;
}
.home-faq-content p:last-child {
    margin-bottom: 0;
}
