#whoweare h2{
    text-align: center;
    font-size: 30pt;
}

#whoweare p{
    text-align: center;
    font-size: 16pt;
    margin-left: 20px;
    margin-right: 20pt;
}

#services {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3em;
    color: #007bff; /* Example color */
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #555;
}

.service-item p {
    font-size: 1em;
    color: #777;
    line-height: 1.6;
}