* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "open sans", sans-serif;
  line-height: 1.6;
  color: #0c0c0c;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  margin: 0 auto;
}

header {
  background-color: #ffffff;
  padding: 0%;
  color: #003da5;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #003da5;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: #003da5;
  text-decoration: none;
  font-weight: 500;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  background-color: #003da5;
  color: white;
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 600px;
  flex: 1;
}

.hero-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text p {
  font-family: "open sans", sans-serif;
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-text .btn {
  font-family: "montserrat", sans-serif;
  background-color: red;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.hero-image img {
  margin-left: 300px;
  width: 450px;
  border-radius: 10px;
  flex: 1;
}

.section {
  padding: 60px 0;
}

.sejarah {
  background-color: white;
  margin: 0;
  padding: 1%;
}
.sejarah-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 10px;
}

.text {
  flex: 1 1 50%;
  min-width: 450px;
  margin-top: 60px;
}
.images {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.images img {
  margin-top: 60px;
  align-items: flex-end;
  margin-left: 200px;
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
}

.text h3 {
  margin-left: 0%;
  padding: 0%;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: red;
  margin-bottom: 20px;
}

.text h3 .text p {
  margin-left: 0%;
  padding: 0%;
  font-family: "open sans", sans-serif;
  font-size: 17px;
  color: #0c0c0c;
}

.profile {
  background-color: #003da5;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
}

.profile .text h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}

.lead {
  font-family: "open sans", sans-serif;
  font-size: 17px;
  color: #f2f2f2;
}

.image .profile {
  width: 450px;
  margin-right: 300px;
  flex: 1;
  border-radius: 10px;
  margin-bottom: 20px;
}

.profile-layout {
  flex-direction: row-reverse;
}
.sejarah-layout {
  flex-direction: row;
}
.content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .container,
  .two-column,
  .sejarah-container,
  .content-wrapper {
    flex-direction: column;
    align-items: right;
    padding: 20px;
  }

  header .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
    align-items: right;
    gap: 10px;
  }

  .hero-text h2 {
    font-size: 26px;
    text-align: left;
  }

  .hero-text p {
    font-size: 16px;
    text-align: left;
  }

  .hero-text .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .hero-image img {
    margin-left: 0;
    width: 100%;
    max-width: 300px;
  }

  .images img {
    margin-left: 0;
    max-width: 90%;
  }

  .image.profile {
    margin-right: 0;
    width: 100%;
    max-width: 300px;
  }

  .text {
    text-align: center;
    min-width: unset;
  }

  .lead {
    font-size: 16px;
    text-align: center;
  }
}
