body,html{
   width: 100%;
   margin: 0;
}
   
/* General Page Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f8ff; /* light sky blue tone */
  color: #0c0b0cde;
  text-align: center;
}

header {
  text-align: center;
  background: skyblue;
  padding: 20px;
  color: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Section Content Boxes */
.content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin: 40px auto;
  width: 80%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  gap: 20px;
}

/* Reverse layout for alternating effect */
.content-box.reverse {
  flex-direction: row-reverse;
}

.content-box .text {
  flex: 1;
}

.content-box .text h2 {
  color: skyblue;
  margin-bottom: 15px;
}

.content-box .text p {
  line-height: 1.6;
}

.content-box .image {
  flex: 1;
  text-align: center;
}

.content-box .image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 900px) {
  .content-box {
    flex-direction: column;
    text-align: center;
  }
  .content-box.reverse {
    flex-direction: column;
  }
}
footer{
  text-align: center;
  font-size: large;
  color: #007acc;
}
