    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', system-ui, sans-serif; color: #333; background: #f5f5f5; -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

    /* ===== TOP BAR ===== */
    .topbar { background: #1a1a2e; color: #e0e0e0; font-size: 13px; }
    .topbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; gap: 8px; }
    .topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
    .topbar a:hover { color: #f5a623; }
    .topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .topbar-right { display: flex; align-items: center; gap: 6px; }

    /* ===== NAV ===== */
    .navbar { background: #0f3460; color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.15); position: sticky; top: 0; z-index: 100; }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
    .logo { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-main { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; }
    .logo-sub { font-size: 11px; letter-spacing: 3px; color: #f5a623; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 500; }
    .nav-links a { transition: color .2s; }
    .nav-links a:hover { color: #f5a623; }
    .nav-cta { margin-left: 8px; background: #f5a623; color: #1a1a2e; padding: 10px 20px; border-radius: 4px; font-weight: 700; transition: background .2s; }
    .nav-cta:hover { background: #e09000; }
    .hamburger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
    .hamburger svg { width: 24px; height: 24px; }
    .mobile-menu { display: none; background: #0f3460; border-top: 1px solid #1a3a6e; padding: 0 16px 16px; flex-direction: column; gap: 12px; font-size: 14px; font-weight: 500; }
    .mobile-menu a { padding: 8px 0; transition: color .2s; }
    .mobile-menu a:hover { color: #f5a623; }
    .mobile-menu .nav-cta { text-align: center; display: block; margin-left: 0; }
    .mobile-menu.open { display: flex; }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: block; }
    }

    /* ===== HERO ===== */
    .hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: #0f3460; }
    .hero-overlay { position: absolute; inset: 0; background: rgba(15,52,96,.8); }
    .hero-content { position: relative; z-index: 2; max-width: 640px; padding: 80px 0; }
    .hero-label { color: #f5a623; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
    .hero h1 { font-size: 48px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 24px; }
    .hero h1 span { color: #f5a623; }
    .hero-desc { color: #d0d0d0; font-size: 18px; line-height: 1.6; margin-bottom: 32px; max-width: 520px; }
    .hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
    .btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #f5a623; color: #1a1a2e; padding: 16px 32px; border-radius: 4px; font-weight: 700; font-size: 17px; transition: background .2s; border: none; cursor: pointer; }
    .btn-primary:hover { background: #e09000; }
    .btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: #fff; padding: 16px 32px; border-radius: 4px; font-weight: 700; font-size: 17px; border: 2px solid #fff; transition: background .2s; cursor: pointer; }
    .btn-outline:hover { background: rgba(255,255,255,.1); }

    @media (max-width: 768px) {
      .hero h1 { font-size: 32px; }
      .hero-buttons { flex-direction: column; }
    }
    @media (min-width: 1024px) {
      .hero { min-height: 700px; }
      .hero h1 { font-size: 56px; }
    }

    /* ===== FEATURES ===== */
    .features { background: #fff; padding: 64px 0 80px; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .feature-card { background: #f7f9fc; border-radius: 8px; padding: 32px; text-align: center; border: 1px solid #e8ecf2; transition: box-shadow .2s; }
    .feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
    .feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: #0f3460; color: #f5a623; margin-bottom: 20px; }
    .feature-icon svg { width: 28px; height: 28px; }
    .feature-card h3 { font-size: 17px; font-weight: 700; color: #0f3460; margin-bottom: 12px; }
    .feature-card p { color: #555; line-height: 1.6; font-size: 14px; }
    @media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

    /* ===== SERVICES ===== */
    .services { background: #f0f4f8; padding: 64px 0 80px; }
    .section-title { text-align: center; margin-bottom: 48px; }
    .section-title h2 { font-size: 36px; font-weight: 900; color: #0f3460; margin-bottom: 12px; }
    .section-title .bar { width: 64px; height: 4px; background: #f5a623; margin: 0 auto; }
    .section-title .bar-mb { margin-bottom: 16px; }
    .section-title p { color: #555; max-width: 720px; margin: 0 auto; line-height: 1.6; }
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .service-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,.06); transition: box-shadow .3s; }
    .service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); }
    .service-card img { width: 100%; height: 224px; object-fit: cover; transition: transform .5s; }
    .service-card:hover img { transform: scale(1.05); }
    .service-card .img-wrap { overflow: hidden; }
    .service-card .body { padding: 24px; }
    .service-card h3 { font-size: 19px; font-weight: 700; color: #0f3460; margin-bottom: 12px; }
    .service-card p { color: #555; line-height: 1.6; font-size: 14px; }
    @media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

    /* ===== CTA ===== */
    .cta-section { position: relative; padding: 80px 0; overflow: hidden; text-align: center; }
    .cta-overlay { position: absolute; inset: 0; background: rgba(15,52,96,.9); }
    .cta-content { position: relative; z-index: 2; }
    .cta-section h2 { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 16px; }
    .cta-section > .cta-content > p { color: #b0c4de; font-size: 18px; margin-bottom: 32px; }
    .cta-buttons { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
    .btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #0f3460; padding: 16px 32px; border-radius: 4px; font-weight: 700; font-size: 17px; transition: background .2s; border: none; cursor: pointer; }
    .btn-white:hover { background: #f0f0f0; }
    .btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 16px 32px; border-radius: 4px; font-weight: 700; font-size: 17px; border: 2px solid #fff; transition: background .2s; cursor: pointer; }
    .btn-ghost:hover { background: rgba(255,255,255,.1); }
    @media (max-width: 640px) { .cta-buttons { flex-direction: column; } }

    /* ===== ABOUT ===== */
    .about { background: #fff; padding: 64px 0 80px; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .about-grid h2 { font-size: 32px; font-weight: 900; color: #0f3460; margin-bottom: 24px; line-height: 1.2; }
    .about-text { color: #555; line-height: 1.7; }
    .about-text p { margin-bottom: 16px; }
    .about-text .bold-link { font-weight: 600; color: #0f3460; }
    .about-text h3 { font-size: 20px; font-weight: 700; color: #0f3460; margin-top: 32px; margin-bottom: 16px; }
    .about-img { border-radius: 8px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
    .about-img img { width: 100%; height: 500px; object-fit: cover; }
    @media (max-width: 1023px) { .about-grid { grid-template-columns: 1fr; } .about-img img { height: 400px; } }

    /* ===== DETAILED SERVICES ===== */
    .detailed { background: #f0f4f8; padding: 64px 0 80px; }
    .detailed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .detailed-card { background: #fff; border-radius: 8px; padding: 24px; border: 1px solid #e8ecf2; transition: box-shadow .2s, border-color .2s; }
    .detailed-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: rgba(245,166,35,.3); }
    .detailed-card .ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 8px; background: #0f3460; color: #f5a623; margin-bottom: 16px; }
    .detailed-card .ic svg { width: 24px; height: 24px; }
    .detailed-card h3 { font-size: 17px; font-weight: 700; color: #0f3460; margin-bottom: 12px; }
    .detailed-card p { color: #555; line-height: 1.6; font-size: 14px; }
    @media (max-width: 1023px) { .detailed-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .detailed-grid { grid-template-columns: 1fr; } }

    /* ===== WHY US ===== */
    .why-us { background: #fff; padding: 64px 0 80px; }
    .reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 800px; margin: 0 auto; }
    .reason { display: flex; align-items: flex-start; gap: 12px; background: #f7f9fc; border-radius: 8px; padding: 16px; border: 1px solid #e8ecf2; }
    .reason-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #0f3460; display: flex; align-items: center; justify-content: center; color: #f5a623; }
    .reason-icon svg { width: 20px; height: 20px; }
    .reason p { color: #333; font-size: 14px; line-height: 1.6; padding-top: 8px; }
    .why-us-footer { color: #555; text-align: center; margin-top: 32px; max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.7; }
    .why-us-footer .bold-link { font-weight: 600; color: #0f3460; }
    @media (max-width: 640px) { .reasons-grid { grid-template-columns: 1fr; } }

    /* ===== HOW IT WORKS ===== */
    .how-it-works { background: #fff; padding: 64px 0 80px; }
    .steps-overview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 960px; margin: 0 auto 40px; }
    .step-card { text-align: center; background: #f7f9fc; border-radius: 8px; padding: 24px; border: 1px solid #e8ecf2; transition: box-shadow .2s; }
    .step-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
    .step-num-circle { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #f5a623; color: #1a1a2e; margin-bottom: 16px; }
    .step-num-circle svg { width: 24px; height: 24px; }
    .step-label { font-size: 11px; font-weight: 700; color: #f5a623; margin-bottom: 8px; letter-spacing: 1px; }
    .step-card h3 { font-size: 17px; font-weight: 700; color: #0f3460; margin-bottom: 8px; }
    .step-card p { color: #555; font-size: 14px; line-height: 1.6; }
    .how-footer { max-width: 800px; margin: 0 auto; text-align: center; color: #555; line-height: 1.7; }
    .how-footer .bold-link { font-weight: 600; color: #0f3460; }
    @media (max-width: 1023px) { .steps-overview { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .steps-overview { grid-template-columns: 1fr; } }

    /* ===== ADVANTAGES ===== */
    .advantages { background: #0f3460; padding: 64px 0 80px; }
    .advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
    .adv-item { text-align: center; }
    .adv-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: #f5a623; color: #1a1a2e; margin-bottom: 20px; }
    .adv-icon svg { width: 28px; height: 28px; }
    .adv-item h3 { color: #fff; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; margin-bottom: 8px; }
    .adv-item p { color: #b0c4de; font-size: 14px; line-height: 1.6; }
    @media (max-width: 1023px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .advantages-grid { grid-template-columns: 1fr; } }

    /* ===== PROCESS STEPS ===== */
    .process { background: #fff; padding: 64px 0 80px; }
    .process-list { max-width: 720px; margin: 0 auto; }
    .process-item { display: flex; gap: 20px; margin-bottom: 24px; background: #f7f9fc; border-radius: 8px; padding: 24px; border: 1px solid #e8ecf2; transition: box-shadow .2s; }
    .process-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
    .process-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: #f5a623; color: #1a1a2e; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; }
    .process-item h3 { font-size: 17px; font-weight: 700; color: #0f3460; margin-bottom: 8px; }
    .process-item p { color: #555; font-size: 14px; line-height: 1.6; }

    /* ===== REVIEWS ===== */
    .reviews { background: #f0f4f8; padding: 64px 0 80px; }
    .reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
    .review-card { background: #fff; border-radius: 8px; padding: 24px; box-shadow: 0 4px 12px rgba(0,0,0,.06); border: 1px solid #e8ecf2; transition: box-shadow .2s; }
    .review-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
    .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .review-avatar { width: 48px; height: 48px; border-radius: 50%; background: #0f3460; color: #f5a623; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
    .review-name { font-weight: 700; color: #0f3460; font-size: 14px; }
    .review-stars { display: flex; gap: 2px; color: #f5a623; }
    .review-stars svg { width: 16px; height: 16px; fill: #f5a623; }
    .review-card .review-text { color: #555; font-size: 14px; line-height: 1.6; font-style: italic; }
    @media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

    /* ===== PROFIS SECTION ===== */
    .profis { background: #fff; padding: 64px 0 80px; }
    .profis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start; }
    .profis-label { color: #0f3460; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; }
    .profis h2 { font-size: 36px; font-weight: 900; color: #1a1a2e; margin-bottom: 24px; line-height: 1.1; }
    .profis h2 span { color: #3a8fd6; }
    .profis-bold p { color: #333; font-weight: 600; line-height: 1.7; margin-bottom: 16px; }
    .profis-regular p { color: #555; line-height: 1.7; margin-bottom: 16px; }
    .profis-cta-text { color: #f5a623; font-weight: 700; font-size: 18px; text-transform: uppercase; margin-bottom: 16px; }
    .profis-phone { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #f5a623; color: #fff; margin-bottom: 24px; transition: background .2s; }
    .profis-phone:hover { background: #e09000; }
    .profis-phone svg { width: 24px; height: 24px; }
    .btn-callback { display: inline-flex; align-items: center; justify-content: center; background: #f5a623; color: #1a1a2e; padding: 16px 32px; border-radius: 4px; font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 1px; transition: background .2s; }
    .btn-callback:hover { background: #e09000; }
    .profis-img img { width: 100%; border-radius: 8px; object-fit: cover; }
    @media (max-width: 1023px) { .profis-grid { grid-template-columns: 1fr; } }

    /* ===== STATS ===== */
    .stats-section { position: relative; padding: 80px 0; overflow: hidden; }
    .stats-overlay { position: absolute; inset: 0; background: rgba(15,52,96,.85); }
    .stats-content { position: relative; z-index: 2; }
    .stats-header { text-align: center; margin-bottom: 56px; }
    .stats-header .label { font-size: 11px; font-weight: 700; letter-spacing: 4px; color: #fff; text-transform: uppercase; margin-bottom: 12px; }
    .stats-header h2 { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 16px; }
    .stats-header h2 span { color: #6fa8dc; }
    .stats-header p { color: #c0d0e0; font-size: 17px; }
    .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
    .stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .stat-val-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
    .stat-icon svg { width: 40px; height: 40px; color: #8ab4e8; opacity: .7; }
    .stat-number { font-size: 56px; font-weight: 900; color: #fff; line-height: 1; }
    .stat-label { color: #b0c4de; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
    @media (max-width: 768px) {
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .stat-number { font-size: 40px; }
      .stats-header h2 { font-size: 32px; }
    }

    /* ===== FOOTER ===== */
    .footer-contact { background: #4a6a8a; }
    .footer-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .footer-contact-item { padding: 40px 24px; border-right: 1px solid #5a7a9a; }
    .footer-contact-item:last-child { border-right: none; }
    .footer-contact-item .fc-icon { background: #fff; width: 56px; height: 56px; border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
    .footer-contact-item .fc-icon svg { width: 28px; height: 28px; color: #4a6a8a; }
    .footer-contact-item h3 { color: #fff; font-weight: 700; font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }
    .footer-contact-item p { color: #c0d8e8; font-size: 14px; line-height: 1.6; }
    .footer-contact-item a { color: #c0d8e8; text-decoration: underline; transition: color .2s; }
    .footer-contact-item a:hover { color: #fff; }
    @media (max-width: 1023px) { .footer-contact-grid { grid-template-columns: repeat(2, 1fr); } .footer-contact-item:nth-child(2) { border-right: none; } }
    @media (max-width: 640px) { .footer-contact-grid { grid-template-columns: 1fr; } .footer-contact-item { border-right: none; border-bottom: 1px solid #5a7a9a; } .footer-contact-item:last-child { border-bottom: none; } }

    .footer-bottom { background: #2a2a3e; padding: 20px 0; }
    .footer-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; font-size: 14px; color: #c0c0c0; }
    .footer-nav a { transition: color .2s; }
    .footer-nav a:hover { color: #fff; }

    /* SVG inline icon helper */
    .inline-svg { display: inline-block; vertical-align: middle; }

    .error-404 {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #555;
    text-align: center;
}

.error-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.error-content h1 {
    font-size: 120px;
    margin: 0;
    font-weight: 700;
    color: #0f3460;
}

.error-content .title {
    font-size: 26px;
    margin: 20px 0 10px;
}

.error-content .subtitle {
    font-size: 16px;
    color: #0f3460;
    margin-bottom: 30px;
}

.btn-home {
    display: inline-block;
    padding: 14px 28px;
    background: #0f3460;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
}
@media(max-width: 767px){
	h2 {
    	font-size: 1.5rem!important;
    }
}

/* ===== BLOG ===== */

.blog-previews__wrapper:not(.swiper-wrapper) {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
}
.blog-previews__item {
	width: 33.333%;
	padding: 15px;
	text-decoration: none;
	color: inherit;
}
@media (min-width: 768px) and (max-width: 991px) {
	.blog-previews__item {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.blog-previews__item {
		width: 100%;
	}
}
.blog-previews__image {
	display: block;
	width: 100%;
	height: 300px;
	margin-bottom: 10px;
	position: relative;
}
.blog-previews__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-previews__date {
	position: absolute;
  	bottom: 0;
  	left: .5rem;
  	background-color: hsl(0, 0%, 100%);
  	padding: .25rem 1rem;
	color: hsl(255,100%,0%)!important;
	border-top: 1px solid #4a6a8a;
	border-right: 1px solid #4a6a8a;
	border-left: 1px solid #4a6a8a;
}
.blog-previews__title {
	display: block;
	font-size: 20px;
	padding: 10px 0;
	font-weight: 600;
	color: #4a6a8a;
	margin-bottom: 10px;
}
.blog-previews__description {
	display: block;
}

.blog-pagination {
    margin-top: 30px;
    text-align: center;
}
.blog-pagination ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}
.blog-pagination ul li {
    display: inline-block;
}
.blog-pagination ul li a,
.blog-pagination ul li span {
    display: inline-block;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 600;
    color: #4a6a8a;
    border: 1px solid #4a6a8a;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.blog-pagination ul li a:hover {
    background-color: #4a6a8a;
    color: #fff;
}
.blog-pagination ul li .current {
    background-color: #4a6a8a;
    color: #fff;
    border: 1px solid #4a6a8a;
}
.blog-pagination ul li .prev,
.blog-pagination ul li .next {
    font-size: 16px;
    font-weight: 600;
}
.blog-pagination ul li .dots {
    border: none;
    color: #333;
    padding: 8px 14px;
}

.single-post {
    padding: 40px 0;
}
.single-post__content {
    max-width: 100%;
    margin: 0 auto;
}
.single-post__title {
    font-size: 32px;
    font-weight: 600;
    color: #4a6a8a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.single-post__meta {
    display: flex;
	align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}
.single-post__date,
.single-post__reading-time {
    display: inline-block;
    color: #4a6a8a;
}
.single-post__date {
    border: 1px solid #4a6a8a;
    padding: 5px 10px;
    background-color: #fff;
}
.single-post img {
	object-fit: contain;
}
.single-post__image {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    overflow: hidden;
}
.single-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    text-align: center;
}
.wp-caption img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.wp-caption-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 50%;
}
.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    max-width: 50%;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
.alignnone {
    margin-bottom: 10px;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
.single-post__body {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}
.single-post__body p {
    margin-bottom: 15px;
}
.single-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid #4a6a8a;
    padding-top: 20px;
}
.prev-post,
.next-post,
.prev-post a,
.next-post a {
    font-size: 16px;
    font-weight: 600;
    color: #4a6a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}
.prev-post:hover,
.next-post:hover,
.prev-post:hover a,
.next-post:hover a {
    color: #4a6a8a;
}
.single-post-comments {
    margin-top: 40px;
}
@media (max-width: 767px) {
    .single-post__title {
        font-size: 24px;
    }
    .single-post__image {
        height: 250px;
    }
    .single-post-navigation {
        flex-direction: column;
        gap: 10px;
    }
    .alignleft,
    .alignright {
        float: none;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }
}