/* 🌎 Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* 📱 Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .main-container {
        flex-direction: column;
        text-align: center;
    }

    .slider-container,
    .text-container {
        width: 100%;
    }

    .doctor {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .telegram-button img {
        width: 30px;
        height: 30px;
    }
}
/* 📜 map */
.map-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
}
footer iframe {
    border: none;
    width: 100%;
    height: 200px;
}

/* 📜 Main Content */
.main-container {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    align-items: center;
    gap: 30px;
    margin-top: 80px; /* Adjusted to avoid header overlap */
}
html {
    scroll-behavior: smooth;
}
