/* Text Section */
.text-section {
  background-color: #f9f9f9; /* Light background for readability */
  padding: 40px 20px;
  text-align: left;
}

.text-container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #333; /* Neutral text color */
}

.text-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #004e92; /* Highlight color */
}

.text-container p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.text-container a {
  color: #004e92; /* Link color */
  text-decoration: underline;
}

.text-container a:hover {
  text-decoration: none;
  color: #000; /* Darker color on hover */
}


/* Grid styling for four-image layout */
.four-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    grid-template-rows: 1fr 1fr; /* Two rows */
    gap: 5px; /* Optional gap between images */
}

.four-image-grid img {
    width: 100%; /* Ensure images fill their grid area */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure proper cropping if needed */
}
