.dental-services-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: Arial, sans-serif;
}

.dental-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dental-services-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.dental-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.dental-service-card {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dental-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.dental-service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1abc9c;
}

.dental-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #34495e;
}

.dental-service-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
}
