body {
  background: #ffffff;
  color: black;
  font-family: "Open Sans", sans-serif;
}

.site-header {
  background: #ffffff;
  text-align: center;
  padding: 40px 0;
}

.site-header img {
  max-width: 400px;
}

.top-images {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 20px 0;
}

.top-images div {
  text-align: center;
}

.top-images img {
  display: flex;
  justify-content: center;
  gap: 60px; 
  width: 320px;     
  height: 250px;    
  object-fit: cover; 
  background: #4A90E2;
}

.top-images div:first-child h2 {
  margin-top: 10px;
  font-size: 16px;
  color: #F18F40; 
}

.top-images div:last-child h2 {
  margin-top: 10px;
  font-size: 16px;
  color: #3FA871;
}

.container {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 80%;
  margin: 0 auto;
  padding-top: 20px;
}

.column {
  width: 45%;
}

.column:first-child {
  padding-right: 20px;
}

.card {
  background: #f2f4f8;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.column:first-child .card {
  border-left: 6px solid #F18F40;
}

.column:last-child .card {
  border-left: 6px solid #3FA871;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #4A90E2;
  margin-bottom: 5px;
}

.card h3 {
  font-size: 14px;
  color: #3A5D9F;
  font-family: "Poppins", sans-serif;
}

.card p {
  font-size: 12px;
}

.custom-form {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
}

.form-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-right {
  display: flex;
  flex-direction: column;
}

.form-left input {
  width: 100%px;
  padding: 8px;
  background: #e6e6e6;
  border: none;
}

.form-right textarea {
  width: 240px;
  height: 140px;
  background: #e6e6e6;
  border: none;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.form-section button {
  margin-top: 20px;
}

footer {
  margin-top: 20px;
  background: #3A5D9F;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer img {
  width: 100px;
  border-radius: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  font-size: 16px;
}

.nav-links a {
  text-decoration: none;
  color: #F9C441;
}

.nav-links a:hover {
  color: white;
}

/* pages heading */
header {
  margin-top: 20px;
  background: #3A5D9F;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  width: 100px;
  border-radius: 10px;
}

#hero-box {
  display: grid;
  max-width: 100%;
  justify-items: center;
  align-items: center;
  margin: 50px;
  color: #4A90E2;
}

#hero-box img {
  grid-column: 1/2;
  grid-row: 1/2;
}

#hero-box h1 {
  grid-column: 1/2;
  grid-row: 1/2;
  filter: blur(3px);
}

#hero-box h2 {
  grid-column: 1/2;
  grid-row: 1/2;
  color: #3A5D9F;
  font-size: 1.9em;
}

main {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}

main h1 {
  color: #3A5D9F;
}

#box1, #box3 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #f2f4f8;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 6px solid #F18F40;
  height: 300px;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 30px;
}

#box1 img, #box3 img{
  grid-column: 1/2;
  grid-row: 1/2;
  max-width: 100%;
  max-height: 100%;
}

#words1 {
  grid-column: 2/3;
  text-align: left;
}

#box2, #box4 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-row: 1fr;
  background: #f2f4f8;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  border-right: 6px solid #3FA871;
  height: 300px;
  align-items: center;
  justify-items: right;
  gap: 10px;
  max-width: 100%;
  margin: 30px;
}

#box2 img, #box4 img{
  grid-column: 2/3;
  width: 100%;
  max-height: 100%;
}

#words2 {
  grid-column: 1/2;
  text-align: right;
}






