/* =========================================================
   ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ GLOBAL FIX (CRITICAL)
========================================================= */
.page-ocd img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-ocd .cta-block {
  margin-top: 20px;
}

.page-ocd .youtube-box {
  width: 100%;
  max-width: 500px;
  margin: 25px auto;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  position: relative;
}

.page-ocd .youtube-box img {
  width: 100%;
}

.page-ocd .youtube-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 12px 16px;
  border-radius: 50%;
}

.page-ocd .ocd-types {
  padding: 50px 10px;
  background: var(--bg-light);
  text-align: center;
}

.page-ocd .ocd-types h2 {
  font-size: 24px;
  margin-bottom: 25px;
}

.page-ocd .ocd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-ocd .ocd-card {
  background: linear-gradient(135deg, var(--card-dark), var(--card-dark-2));
  border: 1px solid var(--card-border);
  padding: 16px 12px;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 160px;
  text-align: center;

  transition: 0.2s ease;
  cursor: pointer;
}

/* HOVER */
@media (min-width: 768px) {
  .page-ocd .ocd-card:hover {
    transform: translateY(-4px); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  }
}

.page-ocd .ocd-card:nth-child(1) {
  background: linear-gradient(135deg, #1f3d3b, #2e5c57);
}
.page-ocd .ocd-card:nth-child(2) {
  background: linear-gradient(135deg, #4a2f5c, #6a3f7a);
}
.page-ocd .ocd-card:nth-child(3) {
  background: linear-gradient(135deg, #2c4a6b, #3f6f96);
}
.page-ocd .ocd-card:nth-child(4) {
  background: linear-gradient(135deg, #5a2d2d, #8a3f3f);
}
.page-ocd .ocd-card:nth-child(5) {
  background: linear-gradient(135deg, #2d5a4f, #3f8a7a);
}

.page-ocd .ocd-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
}

.page-ocd .ocd-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
}

.page-ocd .ocd-card p {
  font-size: 12px;
  color: #e0e0e0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-ocd .card-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;

  font-size: 13px;
  font-weight: 600;

  background: #ffffff;
  color: #2F5D50;

  border-radius: 20px;

  pointer-events: none; /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ keeps card clickable */
}

.page-ocd .ocd-card:hover .card-cta {
  transform: translateX(3px);
}



.page-ocd .view-all {
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
}

.page-ocd .view-all a {
  background: #fff;
  color: #2e7d32;
  font-weight: 700;
}

/* =========================================================
   ÃƒÂ°Ã…Â¸Ã¢â‚¬Å“Ã‚Â± RESPONSIVE
========================================================= */

@media (min-width: 768px) {
  .page-ocd .ocd-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-ocd .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 14px;
}

@media (min-width: 768px) {
  .page-ocd .container {
    max-width: 1050px;
    padding: 0 16px;
  }
}

.page-ocd .ocd-subtypes {
  padding: 60px 20px;
}

.page-ocd .ocd-subtypes .container {
  max-width: 900px;
  margin: 0 auto;
}

.page-ocd .ocd-subtypes h1 {
  font-size: 34px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-ocd .subtitle {
  color: #4b5563;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
}

.page-ocd .intro {
  margin-top: 12px;
  color: #6b7280;
  max-width: 720px;
  line-height: 1.6;
}

.page-ocd .section-title {
  margin: 42px 0 18px;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.page-ocd .ocd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-radius: 14px;
  margin-bottom: 14px;
  text-decoration: none;

  border: 1px solid rgba(0,0,0,0.04);
  transition: 0.2s ease;
  cursor: pointer;
}

.page-ocd .ocd-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-ocd .ocd-content h3 {
  margin: 0;
  font-size: 18px;
  color: #111827;
}

.page-ocd .ocd-content p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.page-ocd .arrow {
  font-size: 18px;
  color: #9ca3af;
  transition: 0.2s ease;
  margin-left: 16px;
}

.page-ocd .ocd-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.06);
}

.page-ocd .ocd-row:hover .arrow {
  transform: translateX(6px);
  color: #374151;
}

.page-ocd .blue { background: #E6F4FF; }
.page-ocd .red { background: #FFE4E4; }
.page-ocd .gray { background: #F1F1F1; }
.page-ocd .pink { background: #FFE6F0; }
.page-ocd .purple { background: #EEE8FF; }
.page-ocd .lightred { background: #FFEAEA; }
.page-ocd .indigo { background: #E9EDFF; }
.page-ocd .mint { background: #E6FFF5; }
.page-ocd .gold { background: #FFF2CC; }
.page-ocd .softpink { background: #FFEAF3; }
.page-ocd .lavender { background: #F3E8FF; }
.page-ocd .green { background: #E6FFEF; }
.page-ocd .coolblue { background: #E8F0FF; }
.page-ocd .orange { background: #FFF1E6; }
.page-ocd .teal { background: #E6FFFA; }

.page-ocd .mid-cta, .page-ocd .bottom-cta {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  padding: 32px;
  border-radius: 18px;
  text-align: center;
  margin: 48px 0;
}

.page-ocd .mid-cta h3, .page-ocd .bottom-cta h2 {
  margin-bottom: 8px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .page-ocd .ocd-subtypes {
    padding: 40px 16px;
  }

  .page-ocd .ocd-subtypes h1 {
    font-size: 26px;
  }

  .page-ocd .subtitle, .page-ocd .intro {
    font-size: 15px;
  }

  .page-ocd .ocd-row {
    padding: 16px;
  }

  .page-ocd .ocd-content h3 {
    font-size: 16px;
  }

  .page-ocd .ocd-content p {
    font-size: 13px;
  }

  .page-ocd .arrow {
    font-size: 16px;
  }
}

.page-ocd .ocd-subtype-page {
  padding: 40px 16px;
}

.page-ocd .ocd-subtype-page .container {
  max-width: 720px;
  margin: 0 auto;
}

.page-ocd .ocd-subtype-page h1 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #1b3a3a;
  font-weight: 700;
}

.page-ocd .ocd-subtype-page .subtitle {
  font-size: 17px;
  color: #4a6b68;
  margin-bottom: 12px;
}

.page-ocd .ocd-subtype-page .intro {
  font-size: 15px;
  color: #5c6f6d;
  line-height: 1.6;
  margin-bottom: 18px;
}

.page-ocd .ocd-subtype-page .content-block {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: 0.2s ease;
}

/* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ subtle hover = premium feel */
@media (min-width: 768px) {
  .page-ocd .ocd-subtype-page .content-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  }
}

.page-ocd .ocd-subtype-page .content-block h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1b3a3a;
}

.page-ocd .ocd-subtype-page .content-block p {
  font-size: 15px;
  color: #5c6f6d;
  line-height: 1.6;
}

.page-ocd .ocd-subtype-page .content-block ul {
  padding-left: 18px;
}

.page-ocd .ocd-subtype-page .content-block li {
  margin-bottom: 6px;
}

.page-ocd .ocd-subtype-page .content-block.center {
  text-align: center;
}

.page-ocd .ocd-subtype-page .content-img {
  width: 100%;
  border-radius: 14px;
  margin: 14px 0;
}

.page-ocd .ocd-subtype-page .content-img.small {
  max-width: 320px;
  margin: 14px auto;
  display: block;
}

.page-ocd .ocd-subtype-page .highlight {
  background: linear-gradient(135deg, #e6f7f1, #ffffff);
  border-left: 4px solid #2e7d32;
}

.page-ocd .ocd-subtype-page .trust {
  background: #f8fafc;
  font-size: 14px;
  color: #374151;
  border-radius: 14px;
}

.page-ocd .ocd-subtype-page .final-cta {
  background: linear-gradient(180deg, #ecfdf5, #ffffff);
  border: 1px solid #d1fae5;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.page-ocd .ocd-subtype-page .small-trust {
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
}
.page-ocd .ocd-subtype-page .content-block a:hover {
  background: #eef2f7;
  transform: translateX(6px);
}
.page-ocd .ocd-subtype-page .content-block a {
  transition: 0.2s ease;
}
.page-ocd .hero-banner {
  background: linear-gradient(135deg, #1b3a34, #3f6f60);
  color: #ffffff;
  padding: 60px 20px 50px;
  text-align: center;
}

.page-ocd .hero-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.page-ocd .hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.page-ocd .hero-title {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

.page-ocd .highlight-orange {
  color: #F2C94C;
}

.page-ocd .highlight-blue {
  color: #9FD4FF;
}

.page-ocd .highlight-white {
  color: #ffffff;
}

.page-ocd .hero-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.page-ocd .hero-profile img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;

  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.page-ocd .hero-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.page-ocd .hero-role {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.page-ocd .hero-trust {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 420px;
}

.page-ocd .hero-btn {
  display: block;
  width: 100%;
  max-width: 360px;

  padding: 16px;
  margin-top: 10px;

  text-align: center;

  background: linear-gradient(135deg, #F2C94C, #d4aa4f);
  color: #1b3a34;

  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 8px 22px rgba(0,0,0,0.25);

  transition: all 0.25s ease;
}

.page-ocd .hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.page-ocd .hero-btn:active {
  transform: scale(0.98);
}
.page-ocd .cta-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
  opacity: 0.9;
  line-height: 1.4;
}

.page-ocd .cta-note {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
.page-ocd .faq-section {
margin-top: 40px;
}

.page-ocd .faq-card {
background: #ffffff;
border-radius: 16px;
padding: 16px 18px;
margin-bottom: 14px;

box-shadow: 0 10px 25px rgba(0,0,0,0.08);
cursor: pointer;

transition: all 0.25s ease;

position: relative;
border-left: 4px solid #ff7a18; /* default orange */
}

.page-ocd .faq-card:hover {
transform: translateY(-3px);
box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.page-ocd .faq-q {
font-weight: 700;
font-size: 16px;
color: #1b3a34;
position: relative;
padding-right: 28px;
}

.page-ocd .faq-q::after {
content: "ÃƒÂ¢Ã¢â‚¬â€œÃ‚Â¾"; /* down arrow */
position: absolute;
right: 0;
top: 0;

font-size: 18px;
color: #ff7a18;

transition: transform 0.25s ease;
}

.page-ocd .faq-a {
font-size: 14px;
color: #444;
line-height: 1.5;

max-height: 0;
overflow: hidden;

transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.page-ocd .faq-card.active {
background: #f6fbf9;
}

.page-ocd .faq-card.active .faq-a {
max-height: 200px;
margin-top: 10px;
}

.page-ocd .faq-card.active .faq-q::after {
transform: rotate(180deg);
}

.page-ocd .faq-card:nth-child(1) { border-left-color: #ff7a18; } .page-ocd .faq-card:nth-child(2) { border-left-color: #3f6f60; } .page-ocd .faq-card:nth-child(3) { border-left-color: #6a5acd; } .page-ocd .faq-card:nth-child(4) { border-left-color: #20c997; } .page-ocd .faq-card:nth-child(5) { border-left-color: #f59e0b; } /* gold */

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 480px) {
.page-ocd .faq-card {
padding: 14px;
}

.page-ocd .faq-q {
font-size: 15px;
}

.page-ocd .faq-a {
font-size: 13px;
}
}
.page-ocd .ocd-subtype-page {
  padding-top: 20px;
}

.page-ocd .ocd-subtype-page h1 {
  margin-top: 10px;
}

.page-ocd .ocd-subtype-page .final-cta h2, .page-ocd .ocd-subtype-page .final-cta p {
  opacity: 1;
}

.page-ocd .ocd-subtype-page .content-block {
  margin-bottom: 22px;
}

/* Slight mobile spacing improvement */
@media (max-width: 768px) {
  .page-ocd .ocd-subtype-page {
    padding-top: 15px;
  }

  .page-ocd .ocd-subtype-page .content-block {
    margin-bottom: 20px;
  }
}
.page-ocd .ocd-subtype-page {
  padding: 25px 16px;
}

.page-ocd .ocd-subtype-page h1 {
  margin-top: 5px;
  margin-bottom: 8px;
}

.page-ocd .ocd-subtype-page .subtitle {
  margin-bottom: 10px;
}

.page-ocd .ocd-subtype-page .intro {
  margin-bottom: 16px;
}

.page-ocd .ocd-subtype-page .content-block {
  margin-bottom: 22px;
}

.page-ocd .ocd-subtype-page .final-cta h2, .page-ocd .ocd-subtype-page .final-cta p {
  opacity: 1;
}

.page-ocd .faq-section {
  margin-top: 35px;
}

@media (max-width: 768px) {
  .page-ocd .ocd-subtype-page {
    padding: 20px 14px;
  }

  .page-ocd .ocd-subtype-page h1 {
    font-size: 26px;
  }

  .page-ocd .ocd-subtype-page .content-block {
    margin-bottom: 20px;
  }
}