/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    direction: rtl;
    background-color: #f4f4f4; /* Light background for the body */
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%; /* Increased vertical padding slightly */
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 65px; /* Increased min-height slightly */
}

.logo img {
    height: 40px; /* Slightly smaller logo */
    width: auto;
}

/* New container for links and language switch */
.nav-content {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allow it to take available space */
    justify-content: flex-end; /* Push content to the right (start in RTL) */
    margin-right: 20px; /* Space between logo and nav content */
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
}

.nav-links li {
    position: relative;
    margin: 0 5px; /* Reduced horizontal margin */
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 8px 10px; /* Adjusted padding for compactness */
    border-radius: 4px;
    display: flex;
    align-items: center;
    min-height: 40px; /* Reduced min-height */
    justify-content: center;
    white-space: nowrap; /* Prevent wrapping */
}

.nav-links a:hover {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.08);
    text-decoration: none;
}

.nav-links a.active {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.12);
    font-weight: 700;
}

/* Language Switcher Style - Positioned Separately */
.language-switch {
    margin-right: 15px; /* Space between main links and language switch */
}

.language-switch a {
    padding: 4px 8px; /* Compact padding */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    color: #555;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
    line-height: 1.2;
}

.language-switch a:hover {
    background-color: #f0f0f0;
    color: #333;
    border-color: #aaa;
    text-decoration: none;
}

/* Dropdown menu styles */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 5px 0;
    margin-top: 5px;
    border: 1px solid #eee;
}

.dropdown:hover .dropdown-menu,
.dropdown .dropdown-menu.show { /* Keep .show for potential JS toggle */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    color: #333;
    min-height: auto;
    justify-content: flex-start;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: #4CAF50;
}

.dropdown > a .fa-chevron-down {
    margin-right: 5px;
    font-size: 0.8em;
}

/* Mobile menu button */
.menu-toggle {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    font-size: 24px;
    color: #333;
    padding: 10px;
    margin-left: -10px; /* Adjust position if needed */
}

/* --- Sections --- */

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 20px; /* Reduced padding */
    background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
}

.hero h1 {
    font-size: 2.2rem; /* Slightly smaller */
    margin-bottom: 15px;
    color: #333;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #666;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 25px; /* Slightly smaller */
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Features section */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive grid */
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 35px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Doctor section */
.doctor-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.doctor-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.doctor-image {
    flex: 0 0 250px; /* Fixed width for image container */
    text-align: center;
}

.doctor-image img {
    border-radius: 50%;
    max-width: 200px; /* Reduced size for consistency */
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.doctor-text {
    flex: 1;
}

.doctor-text h2 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.8rem;
}

.doctor-text h4 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.doctor-text p {
    margin-bottom: 15px;
    color: #666;
}

/* Regions Section */
.regions-section {
    padding: 60px 0;
    background-color: #fff;
}

.regions-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 1.8rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.region-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.region-card h4 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.region-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.region-card a {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact section */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 1.8rem;
}

.contact-content {
    display: flex;
    gap: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 20px;
    color: #4CAF50;
    margin-left: 15px; /* RTL: margin-left */
    margin-top: 3px;
    width: 25px; /* Ensure alignment */
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: #333;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.social-links {
    margin-top: 20px;
}

.social-links h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #f1f1f1;
    border-radius: 50%;
    color: #555;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background-color: #4CAF50;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    outline: none;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    padding: 40px 0 15px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px; /* Row and column gap */
    margin-bottom: 30px;
}

.footer-logo, .footer-links, .footer-regions, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
    line-height: 1.5;
}

footer h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #4CAF50;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #ccc;
}

.footer-contact i {
    margin-left: 10px; /* RTL: margin-left */
    color: #4CAF50;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #aaa;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    left: 20px; /* RTL: left */
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    color: white;
    font-size: 28px;
}

/* WhatsApp Chat Popup (Keep existing styles, ensure compatibility) */
.whatsapp-chat {
    position: fixed;
    bottom: 90px;
    left: 20px; /* RTL: left */
    width: 340px;
    max-width: 90%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 998;
    display: none;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-chat.show {
    display: block; /* Ensure display is block when shown */
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #075E54, #128C7E);
    color: #fff;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px; /* RTL: margin-left */
    border: 2px solid rgba(255,255,255,0.8);
}

.chat-header div {
    flex-grow: 1;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-header p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

.close-chat {
    cursor: pointer;
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-chat:hover {
    color: #fff;
}

.chat-body {
    padding: 15px;
    height: 280px;
    overflow-y: auto;
    background-color: #E5DDD5;
    /* Optional background pattern */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23bdbdbd' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.message-bubble {
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 85%;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    line-height: 1.4;
    /* Basic tail for received message */
    border-bottom-right-radius: 0;
}

.user-message {
    background-color: #dcf8c6;
    margin-right: auto; /* RTL: margin-right */
    margin-left: 0;
    /* Basic tail for sent message */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
}

.chat-footer {
    display: flex;
    padding: 10px 15px;
    border-top: 1px solid #f1f1f1;
    background-color: #f9f9f9;
}

.chat-footer input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-left: 10px; /* RTL: margin-left */
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
}

.chat-footer input:focus {
    border-color: #25D366;
}

.send-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 0 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.send-btn:hover {
    opacity: 0.9;
}

.send-btn i {
    margin-left: 5px; /* RTL: margin-left */
    font-size: 1rem;
}

/* General Page Styles (for inner pages) */
.page-header {
    background: linear-gradient(135deg, #e0f2f7, #b3e5fc);
    color: #333;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.content-section {
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.content-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #4CAF50;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.content-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 10px;
    color: #333;
}

.content-section p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.content-section ul, .content-section ol {
    margin: 0 20px 15px;
    padding-right: 20px; /* Indentation for RTL */
}

.content-section li {
    margin-bottom: 10px;
    color: #555;
}

.content-section strong {
    color: #333;
    font-weight: 600;
}

.content-section a {
    color: #1e88e5;
}

.content-section a:hover {
    color: #1565c0;
}

/* Info/Warning Boxes */
.info-box, .warning-box, .contact-info-box, .warning-note {
    background-color: #f9f9f9;
    border-right: 4px solid #4CAF50; /* RTL: border-right */
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 0.95rem;
}

.warning-box {
    border-right-color: #f44336;
    background-color: #ffebee;
}

.warning-note {
    background-color: #fff9c4;
    border-right-color: #ffeb3b;
}

.contact-info-box {
    background-color: #e8f5e9;
    border-right-color: #66bb6a;
}

/* FAQ Section */
.faq-section {
    margin-top: 30px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item h3 {
    font-size: 1.1rem;
    padding: 12px 15px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    position: relative;
    font-weight: 600;
    color: #333;
}

.faq-item h3::after {
    content: '\f078'; /* FontAwesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px; /* RTL: left */
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 0.9em;
    color: #777;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    padding: 0 15px;
    margin: 0;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-size: 0.95rem;
}

.faq-item.active p {
    max-height: 300px; /* Adjust as needed */
    padding: 15px 15px;
}

/* Related Links Section */
.related-links {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.related-links h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.related-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.related-links-list li a {
    display: inline-block;
    background-color: #f1f1f1;
    color: #333;
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.related-links-list li a:hover {
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
}

/* Blog Styles */
.blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 1.8rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-post-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-post-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-content h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    line-height: 1.4;
}

.blog-post-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-content h3 a:hover {
    color: #4CAF50;
}

.blog-post-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
}

.blog-post-excerpt {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.read-more-btn {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Sitemap Page */
.sitemap-section {
    padding: 40px 0;
}

.sitemap-section h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sitemap-list li {
    margin-bottom: 8px;
}

.sitemap-list li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px;
    font-size: 1rem;
}

.sitemap-list li a:hover {
    background-color: #f1f1f1;
    color: #4CAF50;
    text-decoration: none;
}

/* Privacy Policy Page */
.privacy-policy-section {
    padding: 40px 0;
}

.privacy-policy-section h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.privacy-policy-content h2 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #4CAF50;
}

.privacy-policy-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}




/* Map Section Styles */
.map-section {
    padding: 40px 0; /* Reduced padding slightly */
    background-color: #f9f9f9;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 50%; /* Aspect ratio 2:1 (adjust as needed, e.g., 56.25% for 16:9) */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

