*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:'Inter',sans-serif;
}
.header {
display: flex;
justify-content:space-between;
align-items: center;
padding: 15px 20px;
}
.logo{
height:50px;
}
.hamburger{
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
gap:4px;
width:35px;
height:30px;
cursor:pointer;
border:2px solid #1f3493;
border-radius:5px;
padding:4px;
transition:all 0.3s ease;
    }
.hamburger div {
width: 22px;
height: 3px;
background-color: #1f3493;
border-radius: 3px;
transition: all 0.3s ease;
}
.hamburger.open div:nth-child(1){
transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
opacity: 0;
}
.hamburger.open div:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.navbar{
display:flex;
align-items:center;
gap:20px;
}
.navbarmenu {
background-color: #dcdcdc;
padding: 8px 20px;
border-radius: 20px;
display: flex;
gap: 20px;
}
.navbarmenu a {
text-decoration:none;
color:#003366;
font-weight:500;
}
.user-icon {
font-size: 30px;
color: #1f3493;
cursor: pointer;
    }
.container{
background-color:#e6f3ff;	
}
.main{
max-width:1200px;
margin:auto;
background-color:#e6f3ff;
}
h1{
font-size:36px;
font-weight:bold;
text-align: center;
margin-left:-100px;
color:#1f3493;
}
h2{
font-size:28px;
font-weight:bold;
}
.subtitle{
text-align:center;
font-size:24px;
margin-bottom:40px;
color:#1f3493;
margin-left:-100px;
}
.about{
margin-left:250px;
color:#003366;
}
.box{
margin-top:50px;
background-color:#003366;
color: white;
height:250px;
width:1100px;
}
.box h2{
color: white;
margin-top:-230px;

text-align:center;
}
.txt{
text-align:center;
margin-top:50px;
margin-left:50px;
}
.photo1{
margin-left:800px;
margin-top:-360px;
width:280px;
height:250px;
}
.arrow{
width:280px;
height:280px;
margin-top:-20px;
margin-left:40px;
}
.last{
text-align: center;
margin-top:0px;
margin-bottom:30px;
}
.last h2{
font-size:35px;
color:#1f3493;
}
.last p{
	color:#003366;
}
.success{
display: flex;
justify-content:space-around;
flex-wrap: wrap;
gap: 20px;
text-align: center;
font-size: 16px;
}
.one{
max-width: 205px;
}
.one h3{
font-size: 26px;
margin: 10px 0;
color:#003366;
margin-bottom:10px;
}
.one i{
font-size:40px;
}	
.one p{
color:#003366;	
}



footer {
      text-align: center;
      font-size: 13px;
      padding: 20px;
      color: #001f3f;
      
    }

    footer a {
      color: #003366;
      margin: 0 10px;
      text-decoration: none;
      font-weight: bold;
    }
	
@media (max-width: 768px) {
  .hamburger {
display: flex;
}
.navbarmenu {
display:none;
flex-direction: column;
position: absolute;
top: 70px;
left: 0;
width: 100%;
padding: 10px 0;
background-color: #f5f5f5;
z-index: 10;
}
.navbarmenu.active {
display: flex;
}

.main {
padding: 20px 10px;
text-align: center;
  }
h1{
font-size:24px;
margin-left: 0;
  }
.subtitle {
font-size: 18px;
margin-left: 0;
  }
.main p {
margin-left: 0;
padding: 0 10px;
}
.box {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px 10px;
width: 100%;
height: auto; 
margin: 0 auto;
gap: 20px;
}
.box > * {
    min-width: 0;
  }
.arrow,.photo1 {
width: 100%;
max-width: 90%;
height: auto;
object-fit: contain;
flex-shrink: 1;
margin: 0;
  }
.box h2 {
font-size: 22px;
text-align: center;
 margin: 0;
  }
.box .txt {
text-align: center;
}
.last h2 {
font-size: 22px;
  }
.last p {
font-size: 16px;
padding: 0 10px;
}
.success {
flex-direction: column;
align-items: center;
gap: 30px;
}
.one {
width:90%;
  }
.one h3 {
padding-right: 0;
  }
.one i {
padding-right: 0;
  }