body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}

header {
    background-color: #d1c4e9; /* light lavender purple */
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6a1b9a; /* deep purple */
    padding: 0 10px;
}

nav .links {
    display: flex;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
}

nav a:hover {
    background-color: #4a148c; /* darker purple hover */
}

.lang-toggle {
    background: #ffb300; /* gold/yellow */
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.lang-toggle:hover {
    background: #ffa000; /* darker gold */
}

section {
    padding: 20px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    width: 100%;
    max-width: none;
}

@media (max-width: 768px) {
    section {
        width: 90%;
        max-width: 600px;
    }
}

.news-banner {
    background-color: #fff8e1; /* pale yellow */
    padding: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #ffb300; /* gold accent */
    border-radius: 8px;
}

.therapists {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.therapist-card {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 150px;
    text-align: center;
}

.therapist-card img {
    width: 100%;
    border-radius: 8px;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.qr-codes img {
    width: 200px;
    height: 200px;
}

/* Language visibility */
[data-lang] {
    display: none;
}

[data-lang].active {
    display: block;
}

footer {
    background-color: #6a1b9a; /* deep purple footer */
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffb300; /* gold button */
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    display: none;
    transition: background 0.3s ease;
    z-index: 1000;
}

#backToTop:hover {
    background-color: #ffa000; /* darker gold hover */
}