* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/*body {
  height: 100%;
  min-height: 100vh;
}*/
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* ===== MAIN SECTION ===== */
main {
  flex: 1;
}
main {
  margin: 0 auto;
  padding: 3% 5%;
  width: 95%;
  background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5));
  box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

/* Divider */
hr {
  border: none;
  height: 20px;
  width: 90%;
  margin: -10px auto 20px;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px rgb(10, 10, 10);
}

/* Heading */
h2 {
  color: #00175A;
  font-family: 'Ovo', serif;
  margin-bottom: 30px;
}
h1 {
 color: #00175A;
 font-family: 'Ovo', serif;   
 text-align: center;
}

/* Flex Layout */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

/* Text Section */
.statement {
  flex: 2;
  font-family: 'Ovo', serif;
  color: #00175A;
  line-height: 1.6;
}

.statement p {
  margin-bottom: 20px;
}

/* Image Section */
.image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.img-about {
  width: 100%;
  max-width: 400px;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
  border-radius: 8px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .image {
    margin-top: 20px;
  }

  .img-about {
    max-width: 100%;
  }
}

