/* CSS Document */



.left-right-section .item {
    flex-direction: row;
    background: #FFF;
}

.left-right-section .info {
    padding: 80px;
}

@media (min-width: 992px) {
.left-right-section .info {
    width: 54%;
}
.left-right-section .bnn {width: 46%;}
}

.left-right-section .item h2 {
    color: var(--color-2, #2C2C34);
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top:0;
}

.left-right-section .item span {
    color: var(--color-3, #9A8A78);
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.left-right-section .item p {
color: var(--color-2, #2C2C34);
font-family: "Montserrat", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px;  
}

.left-right-section .info h2 { font-size: 26px }
.left-right-section .info h2:after { display: none }
@media (max-width: 1200px) {}
@media (max-width: 991px) {}
@media (max-width: 768px) {
    .left-right-section .item {flex-direction: column-reverse;}
}

/*==================== TEAM SECTION =====================*/

.team-section {background: var(--color-2, #2C2C34);}

.team-section .section-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 80px;
  }
  .team-section .section-header span {
    font-size: 18px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    

  }
  .team-section .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding-bottom: 80px;

  }
  .team-member {
    background: #fff;
    border-radius: 10px;
    max-width: 500px;
    flex: ;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  @media (min-width: 540px) {
   .team-member {
     flex: 1 1 45%;
   } 
  }
  .team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .team-info {
    padding: 25px;
    font-family: "Montserrat", sans-serif;
    color: #333;
  }

  .team-info p{
    color: var(--color-2, #2C2C34);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;  
  }
  .team-info h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
  }
  .team-info .role {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
  }
  .team-info .role span {
    color: #aaa;
  }
  
  /*==================== COMMITMENT SECTION =====================*/
  .commitment-section {
    background: #f3f2ef;
    padding: 80px 0;
  }
  
  .commitment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
  }
  
  .commitment-text {
    flex: 1 1 50%;
    padding: 0 40px 0 80px;
  }
  
  .commitment-text span {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    color: #666;
  }
  
  .commitment-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 24px;
    font-family: "Montserrat", sans-serif;
    color: #000;
  }
  
  .commitment-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
  }
  
  .commitment-facts {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    align-items: anchor-center;
    align-self: anchor-center;

  }
  
  .commitment-facts .fact {
    flex: 1 1 45%;
    background: #2C2C34;
    padding: 50px 30px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .commitment-facts .fact i {
    font-size: 32px;
    margin-bottom: 16px;
    color: #ffffff;
  }

  @media (max-width: 768px) {
    .commitment-facts {
      flex-direction: column;
      padding: 0 40px;
    }
  }
  