/* General styles */
.container {
    padding: 20px;
}

/* Section title styles */
.section-title {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Doctor profile styles */
.doctor-profile {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
}

.doctor-profile img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
}

.doctor-profile div {
    flex: 1;
}

.doctor-profile h3 {
    margin-top: 0;
}

/* Mobile-specific styles
@media (max-width: 768px) {
    .doctor-profile {
        flex-direction: column;
        align-items: center;
    }

    .doctor-profile img {
        margin-bottom: 10px;
    }

    .desktop-content {
        display: none; 
    }

    .mobile-content {
        display: block; 
    }
} */

 /* Desktop-specific styles */
@media (min-width: 769px) {
    .desktop-content {
        display: block; /* Ensure desktop content is displayed on larger screens */
    }

    .mobile-content {
        display: none; /* Hide mobile content on larger screens */
    }
}

/* Other content styles */
.homeopathy-treatments {
    background-color: #d1e7f0;
    padding: 20px;
    border-radius: 8px;
}

.our-doctors {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
}
