 :root {
      --dark-blue: #1A237E;
      --medium-blue: #283593;
      --light-blue: #215a8b;
      --lighter-blue: #5C6BC0;
      --lightest-blue: #9FA8DA;
      --bg-light: #E8EAF6;
      --text-dark: #000000;
      --text-medium: #303F9F;
      --text-light: #5C6BC0;
      --green: #4CAF50;
	  
      --text-price-all-primary: #2a6496;
      --text-price-all-secondary: #4CAF50;
      --text-price-all-text: #333;
      --text-price-all-bg: #fff;
      --text-price-all-border: #d1e3f8;
      --text-price-all-link: #1a73e8;
   
    }

    
    .faq_1_container {
      max-width: 1200px;
      margin: 25px auto;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 2px 12px 12px 12px;
    }

   
    .faq_1_content {
      flex: 1;
      min-width: 300px;
    }

   
    .faq_1_img_container {
      flex: 1;
      min-width: 300px;
      <!-- display: flex; -->
      align-items: center;
      justify-content: center;
    }

    .faq_1_img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      object-fit: cover;
      max-height: 600px;
    }

    /* ---Book Online */
    .faq_1_button {
      display: block;
      width: 200px;
      margin: 40px auto 0;
      padding: 12px 20px;
      background-color: var(--green);
      color: white;
      text-align: center;
      text-decoration: none;
      font-weight: 600;
      border-radius: 10px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .faq_1_button:hover {
      background-color: #3e8e41;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    /*---FAQ */
    .faq-section {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      background: white;
      border-radius: 10px;
      padding: 40px;
      box-sizing: border-box;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .faq-title {
      font-size: 1.8rem;
      margin-bottom: 30px;
      color: var(--text-price-all-primary);
      text-align: center;
      font-weight: 700;
    }

    .faq-item {
      border-bottom: 1px solid var(--lightest-blue);
      margin-bottom: 10px;
    }
    
    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      cursor: pointer;
      padding: 18px 15px;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-price-all-primary);
      position: relative;
      user-select: none;
      transition: all 0.3s ease;
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
	  gap: 10px;
    }
    
    .faq-question:hover {
      background-color: var(--bg-light);
    }

    .faq-question::after {
      content: "\f078";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.9rem;
      color: var(--medium-blue);
      transition: all 0.3s ease;
    }

    .faq-item.active .faq-question::after {
      transform: translateY(-50%) rotate(180deg);
      color: var(--dark-blue);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      font-size: 1rem;
      color: var(--text-price-all-text);
      line-height: 1.6;
      transition: max-height 0.4s ease, padding 0.4s ease;
      background: #f9f9f9;
      border-radius: 0 0 5px 5px;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 10px 15px 15px;
    }

    .faq_1_price {
      display: inline-block;
      padding: 5px 12px;
      background-color: #f0fff0;
      border: 2px solid var(--green);
      border-radius: 10px;
      color: #2E7D32;
      font-weight: bold;
      font-size: 0.9rem;
      margin-left: 10px;
      position: relative;
      right: 30px;
    }

    .faq_1_list {
      padding-left: 20px;
      margin: 10px 0;
    }
    
    .faq_1_list li {
      margin-bottom: 8px;
      position: relative;
      list-style-type: none;
      font-size: 0.95rem;
      color: var(--text-dark);
    }
    
    .faq_1_list li:before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 20px;
      background-color: var(--light-blue);
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 20px;
      margin-right: 8px;
      position: absolute;
      left: -25px;
      top: 0;
      font-size: 0.8rem;
      font-weight: 500;
    }
    
    .faq_1_list li:nth-child(1):before {
      content: '1';
    }
    
    .faq_1_list li:nth-child(2):before {
      content: '2';
    }
    
    .faq_1_list li:nth-child(3):before {
      content: '3';
    }
    
    .faq_1_list li:nth-child(4):before {
      content: '4';
    }
    
    .faq_1_list li:nth-child(5):before {
      content: '5';
    }
	
	.faq_1_list li:nth-child(6):before {
      content: '6';
    }
	
	.faq_1_list li:nth-child(7):before {
      content: '7';
    }
	
	.faq_1_list li:nth-child(8):before {
      content: '8';
    }
    
    .faq_1_highlight {
      color: var(--text-dark);
      font-weight: 500;
    }

    .faq_additional {
      margin-top: 5px;
      padding-top: 1px;
      text-align: center;
    }
    
    .faq_h2, .faq_h3 {
      font-size: 1.4rem;
      color: var(--text-price-all-primary);
      margin: 25px 0 15px;
      font-weight: 600;
    }
    
    .faq_h3 {
      font-size: 1.4rem;
      margin-top: 25px;
    }
    
    .faq_text {
      font-size: 1.1rem;
      color: var(--text-dark);
      line-height: 1.6;
      text-align: left;
    }

    @media (max-width: 768px) {
      .faq_1_container {
        flex-direction: column;
        gap: 20px;
      }
      
      .faq-section {
        padding: 30px 20px;
      }
      
      .faq-title {
        font-size: 1.8rem;
      }
      
      .faq-question {
        font-size: 1.1rem;
        padding: 15px 14px;
      }
      
      .faq_1_price {
        font-size: 0.8rem;
        padding: 4px 10px;
        right: 25px;
      }
      
      .faq_h2 {
        font-size: 1.6rem;
      }
    }
    
    @media (max-width: 480px) {
      .faq-section {
        padding: 25px 15px;
      }
      
      .faq-title {
        font-size: 1.6rem;
      }
      
      .faq-question::after {
        right: 10px;
      }
      
      .faq_1_price {
        right: 20px;
        font-size: 0.7rem;
      }
      
      .faq_h2 {
        font-size: 1.4rem;
      }
      
      .faq_text {
        font-size: 1rem;
      }
    }
   