.elementor-27537 .elementor-element.elementor-element-c2dad0d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-915ca00 *//* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #2d2d2d;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #d4a853;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8892e;
}

ul, ol {
    list-style: none;
}

/* ===== HEADER ===== */
.site-header {
    background: #1a1a2e;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    width: 180px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a853;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #d4a853;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #d4a853;
    color: #1a1a2e;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: #e6be6a;
    color: #1a1a2e;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== BLOG HERO ===== */
.blog-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1591825729269-caeb344f6df2?w=1400&q=80') center/cover no-repeat;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    padding: 60px 24px 50px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.92) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(26, 26, 46, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #d4a853;
}

.breadcrumbs .separator {
    margin: 0 8px;
}

.breadcrumbs .current {
    color: #d4a853;
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #d4a853;
}

.meta-item a {
    color: rgba(255,255,255,0.7);
}

.meta-item a:hover {
    color: #d4a853;
}

/* ===== BLOG MAIN LAYOUT ===== */
.blog-main {
    padding: 50px 24px 80px;
    background: #f8f8f8;
}

.content-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* ===== ARTICLE STYLES ===== */
.blog-article {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.article-section {
    padding: 40px 48px;
    border-bottom: 1px solid #f0f0f0;
}

.article-section:last-of-type {
    border-bottom: none;
}

.intro-section {
    padding-top: 48px;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.article-section h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
    padding-bottom: 12px;
    border-bottom: 3px solid #d4a853;
    display: inline-block;
}

.article-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 28px 0 12px;
    line-height: 1.4;
}

.article-section p {
    margin-bottom: 16px;
    color: #444;
}

.article-section p:last-child {
    margin-bottom: 0;
}

/* Key Takeaways Box */
.key-takeaways {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
    border-radius: 10px;
    padding: 28px 32px;
    margin-top: 28px;
}

.takeaways-title {
    color: #d4a853 !important;
    font-size: 1.15rem !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 14px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.key-takeaways ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.key-takeaways li {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.key-takeaways li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a853;
    font-weight: 700;
}

/* Table of Contents */
.toc-box {
    background: #faf9f6;
    border: 2px solid #e8e0d0;
    border-radius: 10px;
    padding: 32px 48px;
    margin: 0;
}

.toc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.toc-list {
    counter-reset: toc;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding-left: 0;
}

.toc-list li {
    counter-increment: toc;
}

.toc-list a {
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.toc-list a::before {
    content: counter(toc) ".";
    color: #d4a853;
    font-weight: 600;
    min-width: 24px;
}

.toc-list a:hover {
    color: #1a1a2e;
    border-bottom-color: #d4a853;
}

/* Content Image */
.content-image {
    margin: 28px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-image img {
    width: 100%;
    display: block;
}

.image-caption {
    padding: 12px 16px;
    font-size: 13px;
    color: #777;
    background: #fafafa;
    text-align: center;
    font-style: italic;
    margin-bottom: 0 !important;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.benefit-card {
    background: #faf9f6;
    border: 1px solid #ede8dd;
    border-radius: 10px;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #d4a853;
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.12);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.benefit-icon i {
    color: #d4a853;
    font-size: 20px;
}

.benefit-card h3 {
    font-size: 1.05rem;
    margin: 0 0 8px !important;
    color: #1a1a2e;
}

.benefit-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 0 !important;
}

/* Pro Tip Box */
.pro-tip {
    background: linear-gradient(135deg, #fefcf3, #fdf6e3);
    border-left: 4px solid #d4a853;
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 24px 0;
}

.pro-tip h4 {
    color: #b8892e;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-tip p {
    color: #5a4a2a;
    font-size: 15px;
    margin-bottom: 0 !important;
}

/* Styled Lists */
.styled-list {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.styled-list li {
    padding-left: 28px;
    position: relative;
    color: #444;
    line-height: 1.65;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #d4a853;
    border-radius: 50%;
}

.check-list li::before {
    content: '✓';
    background: none;
    color: #d4a853;
    font-weight: 700;
    font-size: 14px;
    top: 1px;
    width: auto;
    height: auto;
}

/* Comparison Table */
.comparison-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.comparison-table thead {
    background: #1a1a2e;
}

.comparison-table th {
    color: #ffffff;
    font-weight: 600;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.comparison-table th:first-child {
    border-radius: 10px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 10px 0 0;
}

.comparison-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.comparison-table tbody tr:nth-child(even) {
    background: #faf9f6;
}

.comparison-table tbody tr:hover {
    background: #f5f0e5;
}

/* Decision Guide */
.decision-guide {
    margin: 24px 0;
}

.decision-guide h3 {
    background: #1a1a2e;
    color: #d4a853 !important;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    font-size: 1.05rem !important;
    margin-bottom: 0 !important;
}

.decision-guide h3 + .styled-list {
    background: #faf9f6;
    border: 1px solid #ede8dd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px 28px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Trends Grid */
.trends-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.trend-item {
    padding: 24px;
    background: #faf9f6;
    border-radius: 10px;
    border: 1px solid #ede8dd;
    transition: all 0.3s ease;
}

.trend-item:hover {
    border-color: #d4a853;
    transform: translateY(-2px);
}

.trend-item h3 {
    font-size: 1rem !important;
    margin: 0 0 8px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trend-item h3 i {
    color: #d4a853;
}

.trend-item p {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 0 !important;
}

/* Reasons List */
.reasons-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #faf9f6;
    border-radius: 10px;
    border: 1px solid #ede8dd;
    transition: all 0.3s ease;
}

.reason-item:hover {
    border-color: #d4a853;
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.1);
}

.reason-number {
    font-size: 2rem;
    font-weight: 800;
    color: #d4a853;
    line-height: 1;
    min-width: 50px;
    text-align: center;
}

.reason-content h3 {
    margin: 0 0 6px !important;
    font-size: 1.05rem;
}

.reason-content p {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 0 !important;
}

/* FAQ Section */
.faq-section {
    background: #faf9f6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e8e0d0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: #d4a853;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    font-family: inherit;
    gap: 16px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #faf9f6;
}

.faq-icon {
    color: #d4a853;
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.article-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
    padding: 48px;
    margin: 0;
}

.article-cta h2 {
    color: #ffffff !important;
    font-size: 1.6rem;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 16px;
    display: block !important;
}

.article-cta p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 16px;
    max-width: 680px;
}

.article-cta p a {
    color: #d4a853;
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4a853;
    color: #1a1a2e;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e6be6a;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #d4a853;
    color: #d4a853;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a853;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
    text-align: center;
}

.cta-widget h3 {
    color: #d4a853;
    border-bottom-color: rgba(255,255,255,0.15);
}

.cta-widget p {
    color: rgba(255,255,255,0.8);
    font-size: 14.5px;
    margin-bottom: 20px;
}

.btn-sidebar-cta {
    display: block;
    background: #d4a853;
    color: #1a1a2e;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.btn-sidebar-cta:hover {
    background: #e6be6a;
    color: #1a1a2e;
    transform: translateY(-1px);
}

.sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
}

.sidebar-phone:hover {
    color: #d4a853;
}

/* Services Widget */
.sidebar-services {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #555;
    font-size: 14.5px;
    border-radius: 8px;
    transition: all 0.2s;
}

.sidebar-services a:hover {
    background: #faf9f6;
    color: #1a1a2e;
}

.sidebar-services a i {
    color: #d4a853;
    width: 18px;
    text-align: center;
}

/* Trust Widget */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.trust-stat {
    text-align: center;
    padding: 12px 4px;
    background: #faf9f6;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #d4a853;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 4px;
    line-height: 1.3;
}

.trust-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.trust-badges img {
    height: 28px;
    width: auto;
    opacity: 0.8;
}

/* Areas Widget */
.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.areas-list a {
    display: block;
    padding: 6px 10px;
    color: #555;
    font-size: 13.5px;
    border-radius: 6px;
    transition: all 0.2s;
}

.areas-list a:hover {
    color: #1a1a2e;
    background: #faf9f6;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
}

.footer-main {
    padding: 60px 24px 40px;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-col h3 {
    color: #d4a853;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: #d4a853;
    padding-left: 4px;
}

.contact-list i {
    color: #d4a853;
    font-size: 13px;
    width: 16px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: all 0.3s;
    padding: 0;
}

.social-links a:hover {
    background: #d4a853;
    border-color: #d4a853;
    color: #1a1a2e;
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-widget {
        grid-column: 1 / -1;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        padding: 20px 24px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .main-nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links a {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .btn-call span {
        display: none;
    }

    .btn-call {
        padding: 10px;
        border-radius: 50%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .blog-hero {
        min-height: 360px;
        padding: 40px 20px 36px;
    }

    .blog-hero h1 {
        font-size: 1.7rem;
    }

    .post-meta {
        gap: 16px;
        font-size: 13px;
    }

    .article-section {
        padding: 28px 24px;
    }

    .toc-box {
        padding: 24px;
    }

    .benefits-grid,
    .trends-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }

    .reason-item {
        flex-direction: column;
        gap: 8px;
    }

    .reason-number {
        font-size: 1.5rem;
    }

    .article-cta {
        padding: 32px 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        text-align: center;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .site-logo {
        width: 140px;
    }

    .blog-hero h1 {
        font-size: 1.45rem;
    }

    .article-section h2 {
        font-size: 1.35rem;
    }

    .benefit-card,
    .trend-item,
    .reason-item {
        padding: 18px;
    }

    .decision-guide h3 {
        font-size: 0.95rem !important;
    }

    .areas-list {
        grid-template-columns: 1fr 1fr;
    }
}/* End custom CSS */