
/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-dropdown-container {
    max-width: 400px;
    margin: 0 auto 40px;
}

.service-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
}

.service-details {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-details h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-details ul {
    list-style-type: disc;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}




