body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F9F3EB; /* Matches margin background */
    color: black;
}

.kids-section {
    background-color: #FFF7E5; /* Light cream background */
    padding: 10px;
    margin: 10px auto;
    max-width: 790px;
    border: 2px solid #9D3E12; /* Matches header color */
    border-radius: 15px;
}

.kids-section h2 {
    color: #9D3E12;
    text-align: center;
    font-size: 2rem;
}

.kids-section .kids-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.kids-card {
    background-color: white;
    border: 1px solid #FFA34D; /* Orange accent */
    border-radius: 10px;
    width: 210px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.kids-card h3 {
    color: #86C232; /* Lime green */
}

.kids-card p {
    font-size: 1rem;
    color: black;
}

.kids-card button {
    background-color: #F9F3EB; /* Matches margin background */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.kids-card button:hover {
    background-color: #FFA34D; /* Orange hover */
}


#water-saving-tips {
  padding: 20px 20px;
  background-color: #f8f8f8; /* Light gray background for contrast */
  text-align: center;
}

#water-saving-tips h2 {
  margin-bottom: 30px;
  color: #008040;
}

.tips-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.tip-card {
  width: 25%; /* Adjust as needed for spacing */
  font-size: 11px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: left;
  margin-bottom: 20px;
}

.tip-card h3 {
  color: #008040; /* Arizona blue */
  margin-bottom: 15px;
}

.tip-card ul {
  list-style: none;
  padding: 0;
}

.tip-card li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tip-card {
    width: 90%; /* Stack cards on smaller screens */
  }
}
