:root {
      --primary-color: #007BFF;
      --secondary-color: #6C757D;
      --background-color: #F8F9FA;
      --text-color: #333;
      --white: #FFFFFF;
    }
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      background-color: var(--background-color);
      color: var(--text-color);
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    header {
      background-color: var(--white);
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 50px;
      margin-right: 15px;
    }
    .logo-text {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
    }

    /* Mobile styles */
    @media (max-width: 768px) {
      .logo {
        flex-direction: column;
        text-align: center;
      }
      .logo img {
        margin-right: 0;
        margin-bottom: 10px; /* Add some space between image and text */
      }
      .logo-text {
        font-size: 1.2rem; /* Adjust font size for mobile */
      }
      
    }
    .nav-links a {
      color: var(--primary-color);
      text-decoration: none;
      margin: 0 15px;
      font-weight: 600;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--secondary-color);
    }
    section {
      padding: 60px 0;
    }
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: var(--primary-color);
    }
    .branch-info {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }
    .branch-details, .branch-map {
      flex: 1;
    }
    .branch-map iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 10px;
    }
    footer {
      background-color: var(--primary-color);
      color: var(--white);
      text-align: center;
      padding: 20px 0;
      margin-top: 40px;
    }
    .destinations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      text-align: center;
      padding: 20px;
      background-color: var(--white);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .destination {
      background-color: var(--background-color);
      padding: 15px;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      font-weight: 600;
      color: var(--primary-color);
      transition: all 0.3s ease;
      cursor: default;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Added subtle shadow */
    }
    .destination:hover {
      background-color: var(--primary-color);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Increased shadow on hover */
    }
    .faq-item {
      margin-bottom: 15px;
      background-color: var(--white);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      overflow: hidden;
    }
    .faq-question {
      font-weight: 600;
      color: var(--primary-color);
      padding: 15px 20px;
      cursor: pointer;
      position: relative;
      transition: background-color 0.3s;
    }
    .faq-question:hover {
      background-color: #f0f7fa;
    }
    .faq-question::after {
      content: '+';
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      transition: transform 0.3s;
    }
    .faq-answer {
      padding: 0 20px 15px;
      color: var(--text-color);
      display: none; /* Hidden by default, will be toggled by JS */
    }

    .faq-item.active .faq-question::after {
      content: '-';
      transform: translateY(-50%) rotate(180deg); /* Rotate for visual effect */
    }

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

    /* Homepage specific styles */
    .hero {
      background: linear-gradient(rgba(0, 123, 255, 0.5), rgba(0, 123, 255, 0.5)), url('../images/kls1.jpg') no-repeat center center/cover;
      color: var(--white);
      text-align: center;
      padding: 100px 20px;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    .cta-button {
      background-color: var(--white);
      color: var(--primary-color);
      padding: 15px 30px;
      text-decoration: none;
      font-weight: 600;
      border-radius: 5px;
      transition: background-color 0.3s, color 0.3s;
    }
    .cta-button:hover {
      background-color: var(--primary-color);
      color: var(--white);
      border: 2px solid var(--white);
    }
    .about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }
    .about-text {
      flex: 1;
    }
    .about-image {
      flex: 1;
      text-align: center;
    }
    .about-image img {
      max-width: 100%;
      border-radius: 10px;
    }
    .branches-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .branch-card {
      background-color: var(--white);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s;
      min-height: 380px; /* Adjust as needed to fit content */
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .branch-card:hover {
      transform: translateY(-10px);
    }
    .branch-card img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 15px;
    }
    .branch-card h4 {
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      .hide-on-mobile {
        display: none;
      }
    }