*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#f2f6fa;
  font-family: Arial, sans-serif;
}

header {
    padding: 30px 0;
    text-align: center;
}

header h1 {
    color: #1f4e79;
    font-size: 22px;
    letter-spacing: 1px;
}

.wrapper{
  width:900px;
  margin:30px auto;
}

.card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.3);
}

.banner-img{
  width:100%;
  max-height:600px;     
  object-fit:cover;     
  display:block;
}

.content{
  padding:35px 40px;
  color:#333;
}

.content h5{
  font-size:15px;
  margin-bottom:18px;
}

.content li{
  margin-bottom:10px;
  font-size:16px;
}

.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;
  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: 992px){

    .wrapper{
        width: 92%;
    }

    .card{
        border-radius: 16px;
    }

    .banner-img{
        max-height: 500px;
    }

    .content{
        padding: 30px;
    }

    .content h5{
        font-size: 15px;
        line-height: 1.6;
    }

    .content li{
        font-size: 15px;
        line-height: 1.8;
    }

    .bottom-content{
        flex-direction: column;
        gap: 30px;
    }

    .info-left,
    .info-right{
        text-align: center;
    }

    .divider{
        width: 100%;
        height: 2px;
        min-height: auto;
    }

}

@media(max-width: 768px){

    header{
        padding: 25px 20px;
    }

    header h1{
        font-size: 20px;
        line-height: 1.5;
    }

    .wrapper{
        width: 94%;
        margin: 20px auto 40px;
    }

    .banner-img{
        max-height: 350px;
        object-fit: cover;
    }

    .content{
        padding: 24px 22px;
    }

    .content h5{
        font-size: 14px;
        margin-bottom: 15px;
    }

    .content ol{
        padding-left: 20px;
    }

    .content li{
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.8;
    }

    .content2{
        padding: 50px 25px;
    }

    .banner img{
        width: 100%;
        height: auto;
    }

}

@media(max-width: 480px){

    header h1{
        font-size: 18px;
    }

    .wrapper{
        width: 95%;
    }

    .card{
        border-radius: 14px;
    }

    .banner-img{
        max-height: 250px;
    }

    .content{
        padding: 20px 18px;
    }

    .content h5{
        font-size: 13px;
        line-height: 1.7;
    }

    .content li{
        font-size: 13px;
        line-height: 1.9;
    }

    .content2{
        padding: 40px 20px;
    }

    .info-left h2{
        font-size: 20px;
    }

    .info-left p,
    .info-right p{
        font-size: 14px;
        line-height: 1.7;
    }

}