span{
    font-size: 18px;
}

/* Doctor Profile Section Styles */
.bodyt {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.doctor-profile {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.doctor-bio {
    margin-bottom: 50px;
    text-align: center;
}

.doctor-image {
    margin-bottom: 30px;
}

.doctor-image img {
    width: 200px;
    height: 250px;
    border-radius: 30px;
    object-fit: cover;
    border: 5px solid #007bff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doctor-bio h1 {
    color: #2c3e50;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

.doctor-bio p {
    color: #555;
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.key-services {
    text-align: center;
}

.key-services h2 {
    color: #007bff;
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
}

.service-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #343a40;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item li {
    color: #6c757d;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.service-item li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .doctor-bio h1 {
        font-size: 2.2em;
    }

    .key-services h2 {
        font-size: 1.8em;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 20px;
    }
}
