* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Poppins", serif;
    background-color: #ddf0fd;
    padding: 40px 20px;
  }
  .container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-image: url('/images/Background-earth.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center;
	background:#fff;
  }
.note{
	   padding:15px 0px;
	   width:100%;
	   font-style:italic;
	   font-size:12px;
	   margin-top:10px;
   }
  .logo {
    margin-bottom: 40px;
  }
  .logo img {
    width: 120px;
	float:left;
  }
   .logo{
	   color:#305ecc;
	   font-size:25px;
	   line-height:60px;
   }
  .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .profile {
    flex: 1;
    max-width: 50%;
    text-align: left;
  }
  .profile img {
    width: 100%;
    max-width: 170px;
    max-height: 170px;
    height: 100%;
    border: 4px solid #b7d1e2;
    border-radius: 50%;
    margin-bottom: 10px;
    background-color: white;
  }

  .info {
    flex: 2;
    max-width: 60%;
    text-align: left;
  }

  .info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: left;
  }

  .info p {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
    text-align: left;
  }

  .contact-info {
     margin: 10px 0; 
    text-align: left;
  }

  .contact-info p {
   margin: 10px 0; 
    font-size: 12px;
    display: flex;
   text-align: left;
    gap: 10px;
    color: #555;
    
  }

  .contact-info i {
    color: #00bffe;
    font-size: 14px;
    text-align: left;
  }

  .button {
    margin-top: 20px;
    text-align: left;
   
  }

  .button a {
    display: inline-block;
    padding: 5px 15px;
    background-color: #305ecc;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s;
    cursor: pointer;
  }

  .button a:hover {
    background-color: #00bffe;
  }
  
 @media only screen and (max-width: 768px) {
   .logo{
	   font-size:23px;
	   letter-spacing:-0.1em;
   }
 
    .content {
		display: flex !important;
  flex-direction: row !important;
	}
.contact-info{
	padding-left:10px;
}
.info h2{
	font-size:22px;
	padding-left:20px;
	margin:0px;
}
.contact-info p{
	margin:0px;
	padding:2px 5px !important;
	justify-content: left !important;
}
.profile img{
	margin-bottom:30px;
}
.button{
	text-align:left !important;
}

.info p{
	padding-left:20px;
}
}
@media only screen and (max-width: 600px) {
   .logo{
	   font-size:17px;
	   letter-spacing:-0.1em;
	   line-height:40px;
   }
   .info p{
	padding-left:20px;
	font-size:10px;
}
.info h2{
    font-size:16px;
}
  .logo img {
    width: 90px;
	float:left;
  }
}

 