/* Services Section */
#services {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}

#services .container {
    max-width: 1200px;
    margin: 0 auto;
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

#services h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #93c843;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.service p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}