.elementor-140 .elementor-element.elementor-element-17f7217{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-140 .elementor-element.elementor-element-1c80c51{--display:flex;}.elementor-140 .elementor-element.elementor-element-f5839f2{--display:flex;}.elementor-140 .elementor-element.elementor-element-a79cd89{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-56f57ad */.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 50px 5%;
  background-color: #000; /* Dark green background */
  color: #d4af37; /* Gold color */
  font-family: 'Playfair Display', serif;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: #d4af37;
  margin: 20px 0;
}

.hero-content p {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Right Side Image Styling */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 30px;
  }

  .divider {
    margin: 20px auto;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-996387a */.faq-section {
  max-width: 800px;
  margin: 40px auto;
  font-family: 'Playfair Display', serif;
}

.faq-item {
  border: 1px solid #d4af37;
  margin-bottom: 15px;
  padding: 20px;
  background: #000;
  color: #d4af37;
  border-radius: 8px;
  cursor: pointer;
}

.faq-item summary {
  font-weight: bold;
  list-style: none; /* Hides default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Adds the + / - indicator */
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  color: #ffffff;
  margin-top: 15px;
  line-height: 1.6;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 15px;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-5b2d7a1 */.faq-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d4af37;
  padding: 20px 0;
  margin-top: 30px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #d4af37;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-btn {
  background-color: #d4af37;
  color: #062b1a;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Responsive adjustment */
@media (max-width: 600px) {
  .faq-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-6b2ebd9 *//* ==========================================================================
   TLC Drips Premium Accordion FAQ Styling
   ========================================================================== */

.tlc-faq-section {
    background-color: #ffffff;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
}

.tlc-faq-section * {
    box-sizing: border-box;
}

.tlc-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Section Title Styling matching your fonts */
.tlc-faq-title {
    font-family: "Playfair Display", Sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #8c5b43;
    text-align: center;
    margin-bottom: 50px;
}

.tlc-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Accordion Row Box */
.tlc-accordion-item {
    background-color: #ffffff;
    border: 1px solid #f0e6e1;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tlc-accordion-item:hover {
    border-color: #ba846a;
    box-shadow: 0 4px 12px rgba(140, 91, 67, 0.06);
}

/* Accordion Clickable Header Area */
.tlc-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 20px 25px;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: background-color 0.3s ease;
}

.tlc-accordion-header span:first-child {
    font-family: "Playfair Display", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #8c5b43;
    padding-right: 15px;
}

/* Plus Minus Sign Styling */
.tlc-icon-toggle {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #8c5b43;
    line-height: 1;
    user-select: none;
    transition: transform 0.3s ease;
}

/* Inner Answer Content Box Styling */
.tlc-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #faf6f4; /* Subtle soft premium contrast color */
}

.tlc-accordion-content p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    padding: 0 25px 20px 25px;
    margin: 0;
}

/* Active Open States Styling */
.tlc-accordion-item.active {
    border-color: #8c5b43;
}

button:focus, button:hover {
    color: #fff !important;
    text-decoration: none;
}
.tlc-accordion-item.active .tlc-accordion-header {
    background-color: #faf6f4;
}

/* ==========================================================================
   Responsive View adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .tlc-faq-section {
        padding: 50px 15px;
    }
    
    .tlc-faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .tlc-accordion-header {
        padding: 18px 20px;
    }

    .tlc-accordion-header span:first-child {
        font-size: 18px;
    }

    .tlc-accordion-content p {
        padding: 0 20px 18px 20px;
        font-size: 14px;
    }
}/* End custom CSS */