* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f2f6fa;
  color: #333;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.title {
  text-align: center;
  padding: 40px 20px;
}

.title h1 {
  color: #1f4e79;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

.visi {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.visi h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.visi span {
  font-size: 14px;
  color: gray;
}

.visi p {
  font-size: 15px;
}

.misi {
  padding: 50px 80px;
  text-align: center;
}

.misi h2 {
  margin-bottom: 30px;
  font-size: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: #1f4e79;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
}

.visi-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.visi-icon {
  min-width: 60px;
  height: 60px;
  background: #1f4e79;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.horizontal {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.card-icon {
  min-width: 45px;
  height: 45px;
  background: #1f4e79;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.content2{
  padding:60px 80px;
  background:#1f4f75;
  color:white;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:50px; 
}

.banner{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  text-align:center;
}

.banner img{
  max-width:700px;
  width:100%;
  height:auto;
  display:block;
}

.bottom-content{
  width:100%;
  max-width:1100px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
}

.info-left{
  flex:1;
  text-align:left;
}

.info-right{
  flex:1;
  text-align:left;
  font-size:16px;
  line-height:1.7;
}

.info-left h2{
  color:#E5EB14;
  margin-bottom:15px;
}

.info-left p{
  margin:8px 0;
}

.divider{
  width:2px;
  background:white;
  min-height:150px;
}

@media(max-width: 768px) {

  .hero img {
    height: 220px;
  }

  .title {
    padding: 30px 15px;
  }

  .title h1 {
    font-size: 22px;
    line-height: 1.5;
  }

  .visi {
    width: 92%;
    padding: 20px;
  }

  .visi-box {
    flex-direction: column;
    text-align: center;
  }

  .visi h2 {
    font-size: 20px;
  }

  .visi p {
    font-size: 14px;
    line-height: 1.7;
  }

  .misi {
    padding: 35px 20px;
  }

  .misi h2 {
    font-size: 22px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .card-icon {
    margin-bottom: 10px;
  }

  .content2 {
    padding: 40px 20px;
    gap: 35px;
  }

  .bottom-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .info-left,
  .info-right {
    text-align: center;
  }

  .info-right {
    font-size: 15px;
  }

  .divider {
    width: 100%;
    height: 2px;
    min-height: auto;
    margin: 10px 0;
  }

  .banner img {
    width: 100%;
    height: auto;
  }
}