/* Blog Article Styles */
body.blog-page {
    background: #f7f8fa;
}

.blog-article-wrapper {
    padding-top: 130px;
    padding-bottom: 60px;
}

.article-container {
    background: #fff;
    border-radius: 14px;
    padding: 50px 40px;
    box-shadow: 0 10px 35px -8px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

.article-container:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #2d61e9 0%, #4a7dff 100%);
    opacity: 0.07;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #777;
    margin: 10px 0 25px;
}

.article-meta span i {
    color: #2d61e9;
    margin-left: 6px;
}

h1.article-title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

/* Support for larger titles in some articles */
.cost-living h1.article-title {
    font-size: 34px;
}

h2.sec-title {
    font-size: 23px;
    margin: 55px 0 18px;
    font-weight: 700;
    color: #1c2c4f;
    position: relative;
    padding-right: 12px;
}

.cost-living h2.sec-title {
    font-size: 24px;
}

h2.sec-title:before {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 6px;
    height: 60%;
    background: #2d61e9;
    border-radius: 3px;
}

.article-container h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 35px 0 12px;
    color: #2d61e9;
}

.cost-living .article-container h3 {
    font-size: 19px;
}

.article-container p {
    font-size: 15px;
    line-height: 31px;
    text-align: justify;
    color: #444;
    margin-bottom: 18px;
}

/* Lists */
ul.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

ul.check-list li {
    background: #f1f5ff;
    border: 1px solid #e0e9ff;
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    position: relative;
    padding-right: 38px;
}

ul.check-list li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    right: 12px;
    top: 10px;
    color: #2d61e9;
    font-size: 15px;
}

ul.cost-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

ul.cost-list li {
    background: #f1f5ff;
    border: 1px solid #e0e9ff;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.cost-list li span.label {
    font-weight: 600;
    color: #2d61e9;
}

/* Info Boxes and Highlights */
.info-box {
    background: #fdfdfd;
    border: 1px solid #e8ecf5;
    padding: 18px 20px;
    border-radius: 10px;
    margin: 35px 0;
    position: relative;
}

.info-box:before {
    content: "\f129";
    font-family: FontAwesome;
    position: absolute;
    top: -18px;
    right: 22px;
    background: #2d61e9;
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 20px -5px rgba(45,97,233,.5);
}

.cost-living .info-box:before {
    content: "\f05a";
}

.highlight {
    background: #fff8db;
    border: 1px solid #ffe49c;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 14px;
}

.article-container blockquote {
    border-right: 4px solid #2d61e9;
    padding: 15px 20px;
    background: #f0f6ff;
    font-size: 14px;
    line-height: 28px;
    color: #333;
    margin: 30px 0;
    border-radius: 8px;
}

/* Tables */
.table-cost {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: 25px 0;
}

.table-cost tr {
    background: #f5f7fc;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,.05);
}

.table-cost td {
    padding: 10px 16px;
    font-size: 13.5px;
    color: #333;
}

.table-cost td:first-child {
    font-weight: 600;
    color: #2d61e9;
    width: 42%;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #2d61e9, #224db9);
    color: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    margin: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

.cta-box:after {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border: 30px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.cta-box h3 {
    color: #fff;
    margin-top: 0;
    font-size: 21px;
}

.cost-living .cta-box h3 {
    font-size: 22px;
}

.cta-box p {
    color: #f0f5ff;
    margin-bottom: 15px;
}

.cta-box a.btn-cta {
    background: #fff;
    color: #2d61e9;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 6px 18px -6px rgba(0,0,0,.3);
}

.cta-box a.btn-cta:hover {
    background: #f3f5ff;
    text-decoration: none;
}

/* Sidebar */
.blog-sidebar {
    margin-top: 130px;
}

.widget {
    background: #fff;
    padding: 25px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 30px -8px rgba(0,0,0,.06);
    margin-bottom: 30px;
}

.widget h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #1c2c4f;
    position: relative;
    padding-right: 8px;
}

.widget h4:before {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 4px;
    height: 60%;
    background: #2d61e9;
    border-radius: 2px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 12px;
}

.widget ul li a {
    color: #2d61e9;
    font-size: 14px;
    display: inline-block;
}

.widget ul li a:hover {
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb-custom {
    background: #fff;
    margin-bottom: 25px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: 0 4px 18px -8px rgba(0,0,0,.07);
}

.breadcrumb-custom a {
    color: #2d61e9;
    text-decoration: none;
}

/* Internal Links Box */
.internal-links-box {
    background: #fff;
    border: 1px dashed #b8c8ec;
    border-radius: 12px;
    padding: 22px 25px;
    margin: 45px 0;
}

.internal-links-box h4 {
    margin-top: 0;
    font-size: 16px;
    color: #2d61e9;
    font-weight: 700;
}

.internal-links-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.internal-links-box li {
    margin-bottom: 10px;
    font-size: 14px;
}

.internal-links-box a {
    color: #1c2c4f;
    font-weight: 600;
    display: inline-block;
}

.internal-links-box a:hover {
    color: #2d61e9;
    text-decoration: none;
}

/* Tags */
.tag-list a {
    display: inline-block;
    background: #eef3ff;
    color: #2d61e9;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 25px;
    margin: 3px 0 3px 6px;
}

.tag-list a:hover {
    background: #dce6ff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 30px;
    }
    
    .article-container {
        padding: 35px 28px;
    }
    
    h1.article-title {
        font-size: 26px;
    }
    
    .cta-box {
        margin: 50px 0 10px;
    }
}

/* ===================== FAQ ACCORDION ===================== */
.faq-section{margin:50px 0 25px;}
.faq-accordion{border:1px solid #e2e8f4;border-radius:14px;overflow:hidden;background:#fff;box-shadow:0 8px 28px -10px rgba(0,0,0,.06);} 
.faq-item+ .faq-item{border-top:1px solid #e6edf7;}
.faq-question{margin:0;}
.faq-button{width:100%;text-align:right;background:#f5f8fe;border:0;padding:16px 55px 16px 60px;font-size:15px;line-height:1.6;font-weight:600;color:#1c2c4f;cursor:pointer;position:relative;transition:all .3s ease;}
.faq-button:focus{outline:2px solid #2d61e9;outline-offset:2px;}
.faq-button:hover{background:#eef4ff;color:#2d61e9;}
.faq-button .icon{position:absolute;right:18px;top:50%;transform:translateY(-50%);width:28px;height:28px;border-radius:50%;background:#2d61e9;color:#fff;display:flex;align-items:center;justify-content:center;font-size:14px;transition:transform .35s ease, background .3s;box-shadow:0 4px 14px -4px rgba(45,97,233,.5);} 
.faq-button[aria-expanded="true"] .icon{transform:translateY(-50%) rotate(180deg);background:#224db9;} 
.faq-panel{max-height:0;overflow:hidden;transition:max-height .5s cubic-bezier(.65,.05,.36,1);background:#fff;}
.faq-panel-inner{padding:0 28px 25px 28px;font-size:14px;line-height:30px;color:#444;}
.faq-panel-inner p{margin:0 0 14px;}
.faq-panel-inner ul{margin:0 0 14px;padding-right:20px;}
.faq-badge{display:inline-block;background:#2d61e9;color:#fff;font-size:10px;font-weight:600;padding:3px 8px;border-radius:6px;margin-right:8px;letter-spacing:.5px;}
.faq-heading{font-size:20px;font-weight:700;color:#1c2c4f;margin:50px 0 22px;position:relative;padding-right:12px;}
.faq-heading:before{content:"";position:absolute;right:0;top:10px;width:6px;height:60%;background:#2d61e9;border-radius:3px;}
.faq-empty-note{background:#fff9e1;border:1px solid #ffe199;padding:14px 18px;border-radius:10px;font-size:13px;color:#795800;margin-top:18px;}
@media (prefers-reduced-motion:reduce){.faq-panel{transition:none}.faq-button .icon{transition:none}}
@media (max-width:640px){.faq-button{font-size:14px;padding:14px 50px 14px 55px}.faq-panel-inner{padding:0 22px 22px}.faq-heading{font-size:18px;margin:40px 0 18px}}
