.service-areas {
    margin-top: 100px;
    padding: 28px;
    background-color: #f9f9f9;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
  }

  .service-areas p{
    font-family: "Titillium Web";
  }
  
  .service-areas h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    display: inline-block; /* Makes the border only wrap the text */
    margin-bottom: 40px;
  }

  .service-info-container {
    max-width: 800px; /* Set a max width for the container */
    width: 100%;
    margin: 0 auto; /* Center container within parent */
    text-align: center; /* Center text inside the container */
    margin-bottom: 40px; /* Add spacing below */
  }
  
  .service-info-container h3 {
    font-size: 1.5rem;
    margin: 10px 0; /* Add spacing between h3 elements */
    color: #2c3e50;
  }
  
  @media (max-width: 768px) {
    .service-info-container h3 {
      font-size: 1.25rem; /* Adjust for smaller screens */
    }
  }
  
  .service-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .area {
    background: #fff;
    padding: 20px;
    padding-top: 0; /* Remove the padding from the top */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden; /* Ensure content stays within boundaries */
  }
  
  .area h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: #2c3e50;

  }
  
  .area p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    font-family: "Titillium Web";
  }
  
  .area ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    font-family: "Titillium Web";
  }
  
  .area ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .area ul li strong {
    color: #3498db;
  }
  
  .area-image {
    width: calc(100% + 40px); /* Extends to cover the padding area */
    margin-left: -20px; /* Align with the left edge of the column */
    margin-right: -20px; /* Align with the right edge of the column */
    margin-top: -20px; /* Align with the top edge of the column */
    height: 400px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image covers the area, keeping the aspect ratio */
    border-top-left-radius: 8px; /* Optional: round the top corners */
    border-top-right-radius: 8px; /* Optional: round the top corners */
  }
  
  .top-image {
    margin-bottom: 20px;
  }
  
  
  @media (max-width: 768px) {
    .service-columns {
      flex-direction: column;
    }
  
    .service-areas h2 {
      font-size: 2rem;
    }
  
    .area h3 {
      font-size: 1.5rem;
    }
  
    .area-image {
    height: 300px; /* Adjust for smaller screens */
    }
  }
  