/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;

}

/* Thematic Area */
.wash-area {
  height: 80vh;
  background: url("images/waterboy.jpg") no-repeat center/cover;
}

.wash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 5%;
  color: rgb(252, 251, 251);
  font-size: 1.625rem;
  text-align: center;
}

.wash-container h1 {
  font-size: 3.4375rem;
}

.intro, .post-info, .post-content {
  max-width: 90%;
  margin: 2% auto;
  padding: 2%;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}

.intro h2 {
  color: #2f4a64;
  font-size: 2.875rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}
.post-image img {
  width: 50%;
  position: relative;
  margin-left: 20%;/* Adjusted for smaller screens */
}

.post-info h1 {
  font-size: 2.5rem;
  color: #b49406;
  text-align: center;
  margin-bottom: 2%;
  border-bottom: 0.125rem solid #061b57;
  padding-bottom: 1rem;
}

.post-content h3.header-one {
  font-size: 2rem;
  color: #2980b9;
  margin-top: 2%;
  border-left: 0.25rem solid #79681d;
  padding-left: 1rem;
}

.post-content ul {
  list-style-type: none;
  padding: 0;
}

.post-content ul li {
  background-color: #ecf0f1;
  padding: 1%;
  margin: 1% 0;
  border-left: 0.25rem solid #d3c338;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 2rem auto;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  color: white;
  background-color: #3498db;
  text-decoration: none;
  border-radius: 0.5rem;
}

.button:hover {
  background-color: #2980b9;
}

.prev {
  background-color: #e4e12f;
}

.prev:hover {
  background-color: #d3c338;
}

.next {
  background-color: #070be0;
}

.next:hover {
  background-color: #061b57;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .intro, .post-info, .post-content {
    padding: 5%;
    margin: 5%;
  }

  .intro h2 {
    font-size: 2.5rem;
  }

  .post-info h1 {
    font-size: 2.125rem;
  }

  .post-content h3.header-one {
    font-size: 1.75rem;
 
