    /* ===== Logo Mobile / Desktop ===== */

/* Default = Mobile */
.logo-desktop {
  display: none;
}

.logo-mobile {
  display: block;
}

/* Desktop */
@media (min-width: 992px) {
  .logo-mobile {
    display: none;
  }

  .logo-desktop {
    display: block;
  }
}
/* ================= HEADER BACKGROUND FIX ================= */

/* Desktop (default) */
header.th-header {
  background-color: #0A2A4A; /* your existing desktop color */
}

/* Mobile ONLY: transparent header */
@media (max-width: 991px) {
  header.th-header {
    background-color: transparent !important;
  }
}
/* ================= LOGO SIZE CONTROL ================= */

/* Default (desktop) */
.th-logo img {
  width: 300px;
  height: 300;
}

/* Mobile logo size */
@media (max-width: 991px) {
  .th-logo img {
    width: 250px;   /* change as needed */
    height: auto;
  }
}
/* ================= Mobile Logo Shadow ================= */

@media (max-width: 991px) {
  .th-logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
  }
}
@media (max-width: 360px) {
  .btn-wa-big {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .btn-wa-big,
  .btn-call-big {
    padding: 11px;
  }
}
.btn-wa-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
/* ================= SEO CONTENT STYLING ================= */

.seo-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 60px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.seo-content h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.seo-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.seo-content p {
  margin-bottom: 12px;
}

.seo-content ul {
  margin: 12px 0 16px 18px;
}

.seo-content ul li {
  margin-bottom: 6px;
}

/* Mobile readability */
@media (max-width: 768px) {
  .seo-content {
    font-size: 14px;
    padding: 32px 14px 48px;
  }

  .seo-content h2 {
    font-size: 20px;
  }

  .seo-content h3 {
    font-size: 17px;
  }
}