
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fef7f0;
      color: #2c2c2c;
    }

    /*.header {
      background-color: #FFFF;
      padding: 60px 30px;
      text-align: center;
   
    box-shadow: rgba(0, 0, 0, 0.239216) 0px 4px 9px 0px;
    

    }

    .header h1 {
      font-size: 42px;
      margin-bottom: 20px;
      color: #2c2c2c;
    }

    .header p {
      font-size: 20px;
      max-width: 900px;
      margin: 0 auto;
      color: #444;
    }
*/
    .section {
      padding: 60px 30px;
      position: relative;
    }

.mid{
    text-align:center;
}

.green{
    background-color:#005F5F;
}



.directress-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.directress-text,
.directress-img-container {
  width: 50%;
}

.directress-img-container {
  display: flex;
  justify-content: center;  /* Center image horizontally */
  align-items: center;
}

.directress-img {
  width: 435px;
  height: 224px;
  border-radius: 10%;
  object-fit: cover;
  border: 3px solid #ccc;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .directress-text,
  .directress-img-container {
    width: 100%;
    text-align: center;
  }

  .directress-text {
    text-align: left;
  }

  .directress-img {
    margin-top: 15px;
  }
}



.white{
    color:white;
}


    .principles,
    .comparison,
    .directress {
      border-radius: 12px;
      padding: 40px 20px;
      margin: 30px auto;
      max-width: 1082px;
      box-sizing: border-box;
    }

    .principles {
      background-color: #E97451;
      color: white;
    }

    .comparison {
      background-color: #005f5f;
      color: white;
      overflow-x: auto;
    }

    .directress {
      background-color: #F5DEB3; /* changed from pink to beige */
    }

    .principle {
      background-color: rgba(255, 255, 255, 0.1);
      border-left: 8px solid #F3C779;
      padding: 15px 20px;
      margin: 15px 0;
      border-radius: 8px;
    }

    .principle strong {
      color: #fff;
      display: block;
      margin-bottom: 8px;
    }

    .comparison table {
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
      margin-top: 20px;
      min-width: 500px;
    }

    .comparison th, .comparison td {
      border: 1px solid #fef7f0;
      padding: 15px;
     /* background-color: #ffffff10;*/
      color: white;
      width: 50%;
    }

    .comparison th {
      background-color: #F3C779;
      color: black;
      text-align: center; /* centered table heading */
    }

    .directress ul {
      list-style-type: circle;
      padding-left: 25px;
      color: #4b0000;
    }




    .directress p {
      color: #4b0000;
      font-weight: bold;
    }

    .image-side {
      float: right;
      margin: 0 0 20px 30px;
      width: 334px;
      height:300px;
      border-radius: 50%;
    }

    @media (max-width: 768px) {
      .header h1 {
        font-size: 32px;
      }

      .header p {
        font-size: 16px;
      }

      .section {
        padding: 30px 15px;
      }

      .principles,
      .comparison,
      .directress {
        padding: 25px 15px;
      }

      .image-side {
        float: none;
        display: block;
        margin: 20px auto;
        width: 100%;
        max-width: 100%;
      }

      .comparison table {
        font-size: 14px;
      }

      .comparison th, .comparison td {
        padding: 10px;
      }

      .principle {
        font-size: 16px;
      }

      .directress ul {
        font-size: 16px;
      }

      .directress p {
        font-size: 16px;
      }
    }