.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.service {
    width: 300px;
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    padding: 15px;
}

.service img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}


.service h2 {
    color: #E67E22;
    font-size: 1.5em;
}

.service p {
    font-size: 1.1em;
    color: #333;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .service {
        width: 90%; /* Makes blocks smaller to avoid excessive padding */
        margin: 10px auto;
    }
}

.quote-cta {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
  }
  
  .quote-cta h2 {
    font-size: 2.3vw;
    margin-bottom: 10px;
    color: #E67E22;
  }
  
  .quote-cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #E67E22;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #D35400;
  }
  