

/* Services Section */
.services-section {
    background-color: #F9F9F9;
    padding: 50px 0;
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    color: #422a19;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1995AD;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}


/* Services Section */
.services-section {
    background-color: #F9F9F9;
    padding: 50px 0;
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    color: #422a19;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1995AD;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}



