
    /* SECTION */
.my-section {
  width: 100%;
  padding: 60px 20px;
  background: #f9f9f9;
}

/* GRID WRAPPER */
.my-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
}

/* SIDEBAR */
.my-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.my-sidebar a {
  text-decoration: none;
  padding: 12px 15px;
  background: #fff;
  border-left: 4px solid #9B2C2C;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.my-sidebar a:hover {
  background: #9B2C2C;
  color: #fff;
}

/* CONTENT AREA */
.my-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
   overflow-y:auto ;
    height: 600px;
}

/* BLOCK */
.my-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* REVERSE BLOCK */
.my-block.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.my-img img {
  object-fit: contain;
  width: 100%;
  height: 300px;
  min-width: 300px;
  border-radius: 8px;
}

/* TEXT */
.my-text h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #9B2C2C;
  font-weight: 600;
}
.my-text ul {
 list-style: square;
 text-align: justify;
}
.my-text h4 {
  margin-bottom: 5px;
  margin-top: 5px;
  color: #9B2C2C;
  font-weight: 600;
}

.my-text p {
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {

  .my-wrapper {
    grid-template-columns: 1fr;
  }

  /* ORDER FIX */
  .my-sidebar {
    order: 1;
  }

  .my-content {
    order: 2;
     overflow-y:hidden ;
    height: auto;
   
  }

  .my-block,
  .my-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .my-img img {
    max-width: 100%;
  }
  .my-text h3 {
 text-align: left;
 font-size: 25px;
}
  .my-text h4 {
    margin-left: 15px;
 text-align: left;
}
}
