 /* --- OVERLAP SECTION LAYOUT --- */


.custom-content ul {
    list-style: none; /* Премахваме стандартните точки */
    padding: 0;
}

.custom-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    /* font-size: 1.1rem; */
    line-height: 1.4;
}

/* Добавяне на малък стилен булет (напр. кръст или стрелка) */
.custom-content li::before {
    content: "✓"; 
    position: absolute;
    left: 0;
    color: #ffd700; /* Златист цвят за акцент */
    font-weight: bold;
}
.about-hero-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin-top: -50px; /* Consistent Overlap */
    position: relative;
    z-index: 2;
  }

.about-hero-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    /* margin-right: 20px; */
  }

.about-hero-image img {
    width: 100%;
    /* height: 450px; */
    object-fit: cover;

  }

  .about-hero-text {
    flex: 1.2;
  }

.section-heading span {
    color: #ff5e14;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
  }

  /* --- BELIEFS SECTION --- */
.beliefs-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
    margin-top: 60px;
  }

.beliefs-container h2 {
    color: #ffffff;
    font-weight: 800;
  }

.custom-content {
    line-height: 1.8;
   
  }

  /* --- DIVIDER --- */
.section-divider {
    line-height: 0;
    background-color: #1a1a1a;
  }

  @media (max-width: 991px) {
    .about-hero-flex {
      flex-direction: column-reverse; /* Puts text above or image above depending on preference */
      margin-top: 20px;
      padding: 20px;
    }
    /* .about-hero-image img {
      height: 350px;
    } */
  }
