@font-face {
  font-family: 'HelveticaNeue';
  src: url('fonts/HelveticaNeue.woff2') format('woff2'),
       url('fonts/HelveticaNeue.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body, button, input, select, textarea {
  color: #2b2b2b;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
body {
    width: 100%;
    max-width: 1400px;
    background-color: #ffffff; /* Set background here for responsive view */
    margin: 0 auto;
    color: #666;
  }
  
  .container {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
  }
  
  /* === POPUP STYLES === */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    /* display: none; SEMBUNYIKAN SECARA DEFAULT */
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .popup-content {
    background-color: #dbe3ce;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    font-size: 16px;
    text-align: left;
    border-radius: 18px;
    color: #2b2b2b;
    position: relative;
}
  .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    line-height: 1;
  }
  .popup-close:hover {
    color: #000;
  }
  .popup-content h3 {
    margin-top: 0;
    font-weight: bold;
    color: #333;
  }
  .popup-content a {
    color: #0066cc;
    text-decoration: none;
  }
  .popup-content a:hover {
    text-decoration: underline;
  }
  
  /* Header Section */
  header {
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  .logo {
    float: left;
    width: 268px;
    height: 68px;
    margin: 30px 0 0 30px;
    display: inline-block;
  }
  .header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 45px;
  }
  .language-dropdown {
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    width: 120px;
    margin-bottom: 15px;
  }
  .language-selected {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #8c9e5a;
  }
  .language-selected img {
    width: 18px;
    height: 12px;
    margin-right: 8px;
  }
  .language-selected::after {
    content: "▼";
    font-size: 10px;
    margin-left: auto;
    color: #999;
  }
  .language-options {
    display: none;
    position: absolute;
    top: 100%;
    right: -1px;
    border: 1px solid #ccc;
    background-color: white;
    list-style: none;
    padding: 0;
    margin: 0;
    width: calc(100% + 2px);
    z-index: 10;
  }
  .language-options li {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    font-size: 13px;
  }
  .language-options li:hover {
    background-color: #f0f0f0;
  }
  .language-options img {
    width: 18px;
    height: 12px;
    margin-right: 8px;
  }
  .language-dropdown:hover .language-options {
    display: block;
  }
  .top-menu a {
    color: #a6ce39;
    font-size: 16px;
    padding: 10px 10px;
    display: inline-block;
    text-decoration: none;
  }
  /* Hero & Sidebar Section */
  .hero-container {
    display: flex;
    height: 431px;
  }
  .hero-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    float: left;
    display: inline-block;
    width: 75%;
    height: 431px;
    position: relative;
  }
  .hero-text p {
    margin: 0;
    display: block;
    font-family: "gotham-medium";
    line-height: 1.5;
  }
  .hero-text {
    color: #fff;
    font-family: "gotham-medium";
    font-size: 28px;
    text-shadow: 2px 2px #656768;
    width: 59%;
    left: 5%;
    bottom: 5%;
    position: absolute;
    font-weight: bold;
  }
  .hero-sidebar {
    float: left;
    display: inline-block;
    width: 25%;
    height: 431px;
    background-color: #a6cf39;
  }
  .side-nav {
    margin: 20px 0 0 24px;
    padding: 0;
    list-style-type: none;
  }
  .side-nav li a {
    padding: 20px 0;
    display: inline-block;
    color: #fff;
    font-family: "HelveticaNeue";
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
  }
  .side-nav li:first-child a {
    padding-top: 25px;
  }
  .side-nav li:last-child a {
    border-bottom: none;
  }
  
  /* === 1. ACTIVE STATE STYLES === */
  .top-menu a.active,
  .side-nav li a.active {
    color: #5c6b2a; /* Warna lebih gelap untuk menu aktif */
    font-weight: bold;
  }
  .side-nav li a.active {
    background-color: #95a659; /* Latar belakang sedikit lebih gelap */
  }
  
  /* Main Content Section */
  .main-content {
    display: flex;
    align-items: flex-start;
    width: 94%;
    background-color: #bcbec0;
    padding: 80px 3%;
    min-height: 865px;
  }
  .main-content .left-content {
    display: inline-block;
    width: 626px;
    float: left;
    margin-right: 52px;
  }
  .content-text {
    width: 99%;
    max-height: 843px;
    overflow-y: auto;
    padding: 0 1% 0 0;
    font-family: "HelveticaNeueLight";
    font-size: 19px;
    color: #fff;
  }
  .left-content h1, .content-title {
    font-family: "HelveticaNeue";
    font-size: 30px;
    color: #5c7a1c;
    margin-bottom: 40px;
    margin-top: 0;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
  }
  .content-text p,
  .content-text ul li {
    font-family: "HelveticaNeueLight";
    font-size: 19px;
    color: #fff;
  }
  .content-text p {
    margin-bottom: 24px;
    margin-top: 0px;
  }
  .content-text a {
    text-decoration: none;
    color: #ffffff;
  }
  .content-text ul {
    list-style: none;
    padding-left: 15px;
    margin-bottom: 20px;
  }
  .content-text li {
    margin-bottom: 5px;
  }
  .right-content {
    width: 40%;
    text-align: center;
    align-self: flex-end;
  }
  .content-image img {
    width: 100%;
  }
  
  .right-content .top {
    width: 100%;
    min-height: 520px;
    margin-bottom: 20px;
    min-height: 0;
  }
  .right-content .top .news-update h3 {
    margin: 0;
    border-bottom: 5px solid #fff;
    text-align: center;
    padding: 19px 0;
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    font-family: "HelveticaNeue";
    background: url(../images/news-update.jpg) no-repeat center / 100% 100%;
  }
  .right-content .top .news-update {
    width: 100%;
    height: 440px;
    border: 1px solid #898989;
    border-radius: 15px;
    overflow: hidden;
    background: url(../images/background-news.jpg) repeat-y center / 100%;
    margin-top: 73px;
  }
  .right-content .top .news-update .content {
    width: 75%;
    padding-right: 5%;
    margin: 20px auto;
    height: 331px;
    overflow-y: scroll;
    font-family: "HelveticaNeue";
    font-size: 14px;
    color: #808285;
  }
  /* Footer Section */
  footer {
    background-color: #a1cc3a;
    width: 100%;
    text-align: center;
    box-shadow: 0 11px 8px -2px #888888;
    position: relative;
    z-index: 9999;
  }
  footer .copyright {
    font-family: "HelveticaNeue";
    font-size: 14px;
    color: #fff;
    padding: 12px 0;
  }
.contact-form-container { width: 50%; padding-right: 40px; }
.contact-info-container { width: 50%; padding-left: 40px; font-size: 14px; line-height: 1.8; color: #555; }

/* .content-title { color: #8c9e5a; font-size: 22px; font-weight: normal; margin-top: 0; border-bottom: 3px solid #8c9e5a; padding-bottom: 8px; display: inline-block; margin-bottom: 30px; } */

.form-row { display: flex; align-items: center; margin-bottom: 15px; }
.form-row label { width: 100px; font-size: 14px; color: #555; }
.form-row input, .form-row textarea { flex: 1; padding: 8px; border: 1px solid #ccc; background-color: #f0f0f0; border-radius: 4px; }
.form-row textarea { height: 150px; resize: vertical; }

.submit-btn { background-color: #e0e0e0; border: 1px solid #ccc; padding: 8px 25px; font-size: 14px; color: #666; cursor: pointer; margin-left: 100px; margin-top: 10px; }
.submit-btn:hover { background-color: #ccc; }

.contact-info-container h3 { font-size: 14px; font-weight: bold; color: #444; margin-top: 25px; margin-bottom: 5px; }
.contact-info-container a { color: #555; text-decoration: none; }
.contact-info-container a:hover { text-decoration: underline; }
#page-contact-us .contact-info-container {
  font-family: 'HelveticaNeue';
  letter-spacing: 2px;
  color: #2b2b2b;
}

/* Contact Form Messages */
.success-message, .error-message {
    font-family: "HelveticaNeue";
    font-size: 16px;
    text-align: center;
    margin: 20px auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#page-contact-us label{
  font-family: 'HelveticaNeue';
}
#therapeutic-content table, #therapeutic-content table td {
  border-width: 1px 0 0 1px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  border-spacing: 0;
}

  /* === 2. RESPONSIVE STYLES === */
  @media (max-width: 1200px) {
    .main-content .left-content {
      width: 55%;
      margin-right: 30px;
    }
    .right-content {
      width: 42%;
    }
  }

  @media (max-width: 992px) {
    .hero-container {
      flex-direction: column;
      height: auto;
    }
    .hero-banner,
    .hero-sidebar {
      width: 100%;
    }
    .hero-banner {
      height: 300px;
    }
    .main-content {
      flex-direction: column;
      padding: 40px 20px;
    }
    .main-content .left-content {
      width: 100%;
      margin-right: 0;
      margin-bottom: 30px;
    }
    .right-content {
      width: 100%;
      padding-top: 0;
    }
    .content-text,
    .content-image {
      width: 100%;
      padding-right: 0;
    }
    .content-image {
      padding-top: 30px;
      text-align: center;
    }
    .right-content .top .news-update {
      margin-top: 20px;
      height: 350px;
    }
    .right-content .top .news-update .content {
      height: 280px;
    }
  }

  @media (max-width: 768px) {
    body {
      font-size: 14px;
    }

    header {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 15px;
    }

    .header-right {
      align-items: center;
      margin-top: 0;
    }

    .logo {
      width: 200px;
      height: 50px;
      margin: 0;
    }

    .top-menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .top-menu a {
      margin: 0;
      padding: 8px 12px;
      font-size: 14px;
    }

    .hero-text {
      font-size: 20px;
      padding: 20px;
      width: 85%;
      left: 50%;
      transform: translateX(-50%);
      bottom: 10%;
    }

    .hero-text p {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .side-nav {
      margin: 15px 0 0 15px;
    }

    .side-nav li a {
      padding: 15px 0;
      font-size: 16px;
    }

    .main-content {
      padding: 20px 15px;
    }

    .left-content h1 {
      font-size: 24px;
      margin-bottom: 25px;
    }

    .content-text p,
    .content-text ul li {
      font-size: 16px;
      line-height: 1.6;
    }

    .content-text p {
      margin-bottom: 18px;
    }

    .right-content .top .news-update h3 {
      font-size: 20px;
      padding: 15px 0;
    }

    .right-content .top .news-update .content {
      font-size: 13px;
      padding: 15px;
      width: 85%;
      margin: 15px auto;
      height: 260px;
    }

    .popup-content {
      width: 90%;
      max-width: 400px;
      padding: 15px;
      font-size: 14px;
    }

    .popup-content p {
      margin-bottom: 12px;
      line-height: 1.5;
    }

    footer .copyright {
      font-size: 12px;
      padding: 10px 0;
    }

    .hero-sidebar {
      height: 315px;
    }
  }

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

    .hero-banner {
      height: 250px;
    }

    .hero-text {
      font-size: 16px;
      padding: 15px;
      width: 90%;
    }

    .hero-text p {
      font-size: 14px;
      margin-bottom: 6px;
    }

    .logo {
      width: 180px;
      height: 45px;
    }

    .top-menu a {
      font-size: 12px;
      padding: 6px 8px;
    }

    .side-nav li a {
      padding: 12px 0;
      font-size: 14px;
    }

    .main-content {
      padding: 15px 10px;
    }

    .left-content h1 {
      font-size: 20px;
      margin-bottom: 20px;
    }

    .content-text p,
    .content-text ul li {
      font-size: 14px;
      margin-bottom: 15px;
    }

    .right-content .top .news-update {
      height: 300px;
      margin-top: 15px;
    }

    .right-content .top .news-update h3 {
      font-size: 18px;
      padding: 12px 0;
    }

    .right-content .top .news-update .content {
      font-size: 12px;
      height: 220px;
      width: 90%;
    }

    .popup-content {
      width: 95%;
      padding: 12px;
      font-size: 13px;
    }

    .popup-close {
      font-size: 20px;
      top: 8px;
      right: 12px;
    }

    .contact-form-container,
    .contact-info-container {
      width: 100%;
      padding: 0;
    }

    .form-row label {
      width: 80px;
      font-size: 13px;
    }

    .form-row input,
    .form-row textarea {
      padding: 6px;
      font-size: 14px;
    }

    .submit-btn {
      margin-left: 80px;
      padding: 6px 20px;
      font-size: 13px;
    }

    .success-message,
    .error-message {
      font-size: 14px;
      padding: 12px;
      margin: 15px auto;
    }
  }
  