html {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    background-color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 16px;
    
}




/* Title Section */
.vMMMMainTitle {
  text-align: center;
  padding: 120px 20px 20px;
  margin-bottom: 20px;
  background-color: white;
}

.vMMMMainTitle h2 {
    font-size: 48px;
    font-weight: bold;
    color: peru;
    margin-bottom: 4px;
    font-family: sans-serif;
}

.vMMMMainTitle p {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.vvMMMMainTitle p {
  font-size: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  background-color: whitesmoke;
}


/* Base Sections */
.vMMMAbout {
  padding: 100px 20px;
}

.sectionOne {
  background-color: #fffde0;
}

.sectionTwo {
  background-color: #fffde0;
}

/* Flex Container */
.vMMMAboutContainer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.vMMMAboutContainer1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 30px;
}

/* Text Block */
.vMMMAboutContainer1Left {
  width: 45%;
  display: flex;
  align-items: center;
}

.vMMMAboutContainer1LeftWrap {
  color: black;
  text-shadow: 0 0 1px black;
  font-size: 23px;
}

.vMMM h1 {
  font-size: 33px; /* Reduced from 60px */
  font-family: system-ui;
  color: black;
  text-shadow: none;
  font-weight: bold;
  margin-top: 0;
  line-height: 1.3;
}

.vMMMContent p {
  font-size: 18px;
  color: black;
  font-weight: normal; /* Ensures normal text is not all bold */
  text-shadow: none;
  margin-bottom: 15px;
  font-family: system-ui;
}

.vMMMContent b {
  font-weight: bold;
}

/* Image Row (Side by Side) */
.vMMMAboutContainer1Right {
  width: 50%;
  display: flex;
  justify-content: center;     /* centers images horizontally */
  align-items: center;         /* centers images vertically */
}

.doubleImgRow {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.doubleImgRow .vMMMImg {
  flex: 1;
}

.doubleImgRow .vMMMImg img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Button */
.mmmapply a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.mmmapply a:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .vMMMAboutContainer1 {
    flex-direction: column;
  }

  .vMMMAboutContainer1Left,
  .vMMMAboutContainer1Right {
    width: 100%;
  }

  .doubleImgRow {
    flex-direction: column;
  }

  .doubleImgRow .vMMMImg img {
    height: 200px;
  }

  .vMMM h1 {
    font-size: 40px;
    text-align: center;
  }

  .vMMMContent p {
    text-align: center;
  }

  .vmmmapply {
    text-align: center;
  }
}


 .vmmmapply {
    width: 150px;
    background-color: black;
    height: 35px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
}

.vmmmapply a {
    text-decoration: none;
    color: white;
}


@keyframes identifier {
    from{
        opacity: 0;
        transform: translateY(25px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}