
/* Booking section styling */
.mind-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .mind-section .mind-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .mind-content {
    flex: 1;
    max-width: 50%;
  }
  
  .mind-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
  }
  
  .mind-content p:first-child {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .learn-more-button {
    display: inline-block;
    background-color: #ad0089; /* Purple color from your design */
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .read-more-button:hover {
    background-color: #00aca6;
  }
  
  .mind-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
  }
  
  .mind-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .mind-section .mind-section {
      flex-direction: column;
    }
    
    .mind-content, 
    .mind-image {
      max-width: 100%;
    }
    
    .mind-image {
      margin-top: 30px;
      text-align: center;
    }
    
    .mind-image img {
      max-width: 500px;
    }
  }
  
  @media (max-width: 576px) {
    .mind-content p:first-child {
      font-size: 20px;
    }
    
    .mind-content p {
      font-size: 16px;
    }
  }
  
  /* Fix for the nested .mind-section classes */
  #booking-section.mind-section > .container > .mind-section {
    margin: 0;
    padding: 0;
  }