@charset "UTF-8";
/* CSS Document */

/* Reset Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#about {
  width: 100%;
  padding: 20px 10px 0px 10px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* About Header */
.about-header {
  width: 100%;
  background-color: #004080;
  padding: 0;
  text-align: center;
}

.about-header h1 {
  font-family: 'Gradzy', sans-serif;
  color: white;
  font-size: 36px;
  margin: 5px auto;
}

/* Image Grid Styles */
.profile-images,
.personal-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 1250px;
  width: 100%;
}

.profile-images img,
.personal-images img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.about-content {
  max-width: 1800px;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
}

.about-content h2 {
  font-family: 'Gradzy', sans-serif;
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  background-color: #004080;
	border-radius: 10px;
	padding: 10px;
}

.about-content h3 {
  font-size: 24px;
  color: #004080;
  margin-top: 20px;
  font-family: 'Morning Rainbow', cursive;
  text-align: center;
}

.about-content p {
  font-size: 18px;
  line-height: 28px;
  margin: 10px 0;
  font-family: 'Morning Rainbow', cursive;
  color: #333;
  text-align: left;
  text-indent: 20px;
	
}


/* Responsive Media Queries */
@media (max-width: 1920px) {
	
	
	#about {
  padding: 50px 0px 0px 0px;
 
}
	
	 .profile-images img,
  .personal-images img {
    max-width: 350px;
	  margin: 0px 20px;
	  
  }
	
  .about-header h1 {
    font-size: 45px;
	  line-height: 40px;
	 padding: 10px 0px;
  }

  .about-content h2 {
    font-size: 35px;
  }

  .about-content h3 {
    font-size: 35px;
  }

  .about-content p {
    font-size: 24px;
    line-height: 30px;
	 
  }
}

	
/* Responsive Media Queries */
@media (max-width: 1200px) {
	
	
	#about {
  padding: 50px 0px 0px 0px;
 
}
	
	 .profile-images img,
  .personal-images img {
    max-width: 240px;
  }
	
  .about-header h1 {
    font-size: 35px;
	  line-height: 40px;
	 padding: 10px 0px;
  }

  .about-content h2 {
    font-size: 30px;
	 
  }

  .about-content h3 {
    font-size: 35px;
  }

  .about-content p {
    font-size: 22px;
    line-height: 30px;
  }
}


/* Responsive Media Queries */
@media (max-width: 768px) {
	
	 .profile-images img,
  .personal-images img {
    max-width: 200px;
  }
	
  .about-header h1 {
    font-size: 30px;
	 
	 
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content h3 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .profile-images img,
  .personal-images img {
    max-width: 200px;
  }

  .about-header h1 {
    font-size: 26px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content h3 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 18px;
    line-height: 22px;
  }
}
