/* Customer Services Section Styles */
.customer-services {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
}

.customer-services h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.service-item {
    background-color: #006f84; /* Oceanic color from the logo */
    color: white;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item i {
    font-size: 40px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    font-weight: 500;
}

.service-item:hover {
    background-color: #f9d900; /* Crimson red for hover effect */
    color: white;
    transform: translateY(-5px);
}

.contact-info {
    font-size: 16px;
    color: #333;
}

.contact-info a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    color: #006f84; /* Match section style */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #e63946; /* Crimson red for hover */
}

