  
  
    /* Features Section Styles */
    .features-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .features-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(86, 29, 94, 0.05) 0%, transparent 70%);
      border-radius: 50%;
    }

    .features-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 2;
    }

    .features-header h2 {
      color: #561D5E;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .features-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #561D5E 0%, orange 100%);
      border-radius: 2px;
    }

    .features-header p {
      color: #666;
      font-size: 18px;
      margin-top: 20px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      position: relative;
      z-index: 2;
    }

    .feature-card {
      background: #fff;
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #561D5E 0%, orange 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(86, 29, 94, 0.2);
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, rgba(86, 29, 94, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: all 0.4s ease;
    }

    .feature-card:hover .feature-icon {
      background: linear-gradient(135deg, #561D5E 0%, orange 100%);
      transform: rotateY(360deg);
    }

    .feature-icon i {
      font-size: 36px;
      color: #561D5E;
      transition: all 0.4s ease;
    }

    .feature-card:hover .feature-icon i {
      color: #fff;
    }

    .feature-title {
      color: #561D5E;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 15px;
      transition: color 0.3s ease;
    }

    .feature-card:hover .feature-title {
      color: orange;
    }

    .feature-description {
      color: #666;
      line-height: 1.8;
      font-size: 15px;
    }

    /* Professional Image Card Styles */
    .professional-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .professional-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .professional-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .card-body-custom {
      padding: 20px;
    }

    /* Weekly Program Card */
    .weekly-program {
      display: flex;
      gap: 30px;
      align-items: center;
      margin: 50px 0;
      flex-wrap: wrap;
    }

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

    .program-image-card {
      flex: 1;
      min-width: 300px;
    }

    .program-card-content {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .program-title {
      color: #561D5E;
      font-weight: 600;
      margin-top: 15px;
      margin-bottom: 5px;
    }

    .program-subtitle {
      color: #666;
      font-size: 14px;
      line-height: 1.6;
    }

    .rounded-glow {
      border-radius: 12px;
    }

    /* Gallery Section Styles */
    .gallery-section {
      padding: 60px 0;
      background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    }
    
    .gallery-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .gallery-header h2 {
      color: #561D5E;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .gallery-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #561D5E 0%, orange 100%);
      border-radius: 2px;
    }
    
    .gallery-header p {
      color: #666;
      font-size: 18px;
      margin-top: 20px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 15px;
      margin-bottom: 40px;
    }
    
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: all 0.4s ease;
      aspect-ratio: 4/3;
    }
    
    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(86, 29, 94, 0.3);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.15);
    }
    
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(86, 29, 94, 0.9) 0%, rgba(255, 165, 0, 0.8) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    
    .gallery-overlay i {
      color: #fff;
      font-size: 36px;
      transition: transform 0.3s ease;
    }
    
    .gallery-item:hover .gallery-overlay i {
      transform: scale(1.2);
    }

    .gallery-btn-container {
      text-align: center;
      margin-top: 30px;
    }
    
    .btn-view-gallery {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #561D5E 0%, #7a2982 100%);
      color: #fff;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(86, 29, 94, 0.3);
    }
    
    .btn-view-gallery:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(86, 29, 94, 0.4);
      color: #fff;
      background: linear-gradient(135deg, #7a2982 0%, #561D5E 100%);
    }
    
    .btn-view-gallery i {
      font-size: 20px;
    }

    /* FAQ Section Styles */
    .faq-section {
      padding: 80px 0;
      background: #f9f9f9;
    }
    
    .faq-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .faq-header h2 {
      color: #561D5E;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .faq-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #561D5E 0%, orange 100%);
      border-radius: 2px;
    }
    
    .faq-header p {
      color: #666;
      font-size: 18px;
      margin-top: 20px;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      background: #fff;
      border-radius: 12px;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-item:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    .faq-question {
      padding: 25px 30px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(135deg, #561D5E 0%, #7a2982 100%);
      color: #fff;
      font-weight: 600;
      font-size: 18px;
    }
    
    .faq-question i {
      transition: transform 0.3s ease;
    }
    
    .faq-answer {
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      padding: 25px 30px;
      max-height: 500px;
    }
    
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    
    .faq-answer p {
      color: #666;
      line-height: 1.8;
      margin: 0;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      align-items: center;
      justify-content: center;
    }
    
    .lightbox.active {
      display: flex;
    }
    
    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
      position: relative;
      animation: zoomIn 0.3s ease;
    }
    
    @keyframes zoomIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }
    
    .lightbox-content img {
      max-width: 100%;
      max-height: 90vh;
      border-radius: 10px;
      box-shadow: 0 0 50px rgba(255, 165, 0, 0.5);
    }
    
    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 40px;
      cursor: pointer;
      z-index: 10000;
      transition: all 0.3s ease;
    }
    
    .lightbox-close:hover {
      color: orange;
      transform: rotate(90deg);
    }
    
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 50px;
      cursor: pointer;
      padding: 20px;
      transition: all 0.3s ease;
      user-select: none;
    }
    
    .lightbox-nav:hover {
      color: orange;
      transform: translateY(-50%) scale(1.2);
    }
    
    .lightbox-prev {
      left: 20px;
    }
    
    .lightbox-next {
      right: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
      }
      
      .gallery-header h2,
      .faq-header h2,
      .features-header h2 {
        font-size: 32px;
      }
      
      .faq-question {
        padding: 20px;
        font-size: 16px;
      }
      
      .lightbox-nav {
        font-size: 35px;
        padding: 10px;
      }
      
      .weekly-program {
        flex-direction: column;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }
    }




    /* ======= Core Beliefs Section Styles ======= */
.beliefs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.beliefs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.beliefs-header {
  text-align: center;
  margin-bottom: 50px;
}

.beliefs-header h2 {
  font-size: 2.5rem;
  color: #2d1b4e;
  margin-bottom: 15px;
  font-weight: 700;
}

.beliefs-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.belief-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.belief-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.belief-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.belief-card:hover::before {
  opacity: 1;
}

.belief-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.belief-title {
  font-size: 1.5rem;
  color: #2d1b4e;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.belief-content {
  flex: 1;
  margin-bottom: 25px;
}

.belief-content p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 15px;
}

.belief-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.belief-list li {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.belief-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.belief-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.belief-read-more:hover {
  color: #e56a4a;
  border-bottom-color: #ff6b35;
  gap: 12px;
}

.belief-read-more i {
  transition: transform 0.3s ease;
}

.belief-read-more:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .beliefs-section {
    padding: 60px 0;
  }
  
  .beliefs-header h2 {
    font-size: 2rem;
  }
  
  .beliefs-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .belief-card {
    padding: 25px;
  }
  
  .belief-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .beliefs-header h2 {
    font-size: 1.8rem;
  }
  
  .belief-card {
    padding: 20px;
  }
  
  .belief-title {
    font-size: 1.3rem;
  }
}