.turtle-program-section {
  background-color: #F8F6F2;
  padding: 7rem 0;
  position: relative;
}

.turtle-program-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b761c, #c4a747);
}

.turtle-program-section .mbr-section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.turtle-program-section .mbr-text {
  margin-bottom: 3rem;
}

/* Tab-like Title Styles */
.turtle-program-section .nav-tabs {
  border-bottom: 2px solid rgba(139, 118, 28, 0.2);
  margin: 3rem 0 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.turtle-program-section .nav-tabs .nav-item {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.turtle-program-section .nav-tabs .nav-link {
  border: none;
  color: #8b761c;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  position: relative;
  text-align: center;
  width: 100%;
  white-space: normal;
  word-wrap: break-word;
  background: none;
  cursor: default;
  line-height: 1.4;
}

.turtle-program-section .nav-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8b761c, #c4a747);
}

/* Image Styles */
.turtle-program-section .img-fluid {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.turtle-program-section .img-fluid:hover {
  transform: scale(1.02);
}

/* Ensure columns don't stack on mobile */
@media (max-width: 768px) {
  .turtle-program-section .row.g-4 {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
  }
  
  .turtle-program-section .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
  }
  
  .turtle-program-section .img-fluid {
    height: 200px;
  }
}

/* Content Block Styles */
.turtle-program-section .content-block {
  margin: 2rem 0;
}

.turtle-program-section .content-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.turtle-program-section .card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.turtle-program-section .card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #8b761c, #c4a747);
}

.turtle-program-section .list-unstyled li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-family: 'Nunito', sans-serif;
}

.turtle-program-section .list-unstyled li i {
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}

.turtle-program-section .text-success {
  color: #8b761c !important;
}

.turtle-program-section .text-primary {
  color: #c4a747 !important;
}

/* List and Disclaimer Styles */
.turtle-program-section ul {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
  text-align: left;
}

.turtle-program-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  color: #444;
}

.turtle-program-section ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8b761c;
  font-size: 1.2rem;
  font-weight: bold;
}

.turtle-program-section .disclaimer {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: rgba(139, 118, 28, 0.05);
  border-left: 4px solid #8b761c;
  font-style: italic;
  text-align: left;
}

.turtle-program-section .disclaimer p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .turtle-program-section .mbr-section-title {
    font-size: 2rem;
  }
  
  .turtle-program-section .nav-tabs .nav-link {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    line-height: 1.3;
  }
  
  .turtle-program-section .content-block p {
    font-size: 1rem;
  }
  
  .turtle-program-section ul li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .turtle-program-section .disclaimer {
    margin-top: 2rem;
    padding: 1rem;
  }
}

/* New Section Styles */
.turtle-program-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.turtle-program-section .img-fluid {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.turtle-program-section .img-fluid:hover {
    transform: scale(1.02);
}

.turtle-program-section .content-block {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    margin-top: 30px;
}

.turtle-program-section .content-block h5 {
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.turtle-program-section .content-block h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.turtle-program-section .content-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .turtle-program-section {
        padding: 40px 0;
    }
    
    .turtle-program-section .img-fluid {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .turtle-program-section .content-block {
        padding: 30px 20px;
    }
} 