body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

header, footer {
    text-align: center;
    padding: 20px;
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1em;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    right: 0;
    left: 0;
    text-align: right;
    padding-right: 20px;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.doctor-photo {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

h1 {
    font-size: 2em;
    margin: 10px 0;
}

h2 {
    font-size: 1.2em;

}


.description {
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
}

p {
    text-indent: 40px;
}

.appointment-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.appointment-text {
    font-size: 1.2em;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 48px;
    height: 48px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1.0em;
    }

    p {
        text-indent: 20px;
    }

    .doctor-photo {
        width: 220px;
        height: 220px;
    }

    .social-icons img {
        width: 38px;
        height: 38px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}