/* Services Section Styles */
#services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.services-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff0000;
    display: inline-block;
    padding-bottom: 10px;
}

#services .container {
    text-align: left;
    padding-left: 20px; /* Add left padding to move content to the right */
}

#services h2 {
    font-size: 2.5em; /* Match the font size of the About Us title */
    color: #333;
    margin-bottom: 20px;
}

#services h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: auto;
}

.service-content {
    padding: 20px;
    text-align: left;
}

.service-type {
    display: inline-block;
    background-color: #e0f7fa;
    color: #00796b;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.service-content h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: orange;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.learn-more:hover {
    background-color: darkorange;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}