/* General Styles */
html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    background-color: #333;
    padding: 20px 0;
    font-size: 30px; /* Increased from 18px to 30px */
}

footer p {
    text-align: center;
    color: #ccc;
    margin: 0;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center; /* Center the menu bar */
    align-items: center;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Language Toggle */
.language-toggle {
    position: absolute;
    right: 20px;
}

.language-toggle button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center;     /* Center content horizontally */
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 800px;
    font-size: 25px; /* Increased from 18px to 20px */
}

.contact-content {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
    font-size: 25px; /* Increased from 18px to 20px */
}

.map iframe {
    width: 100%;
    max-width: 500px;
    border: 0;
    justify-content: center;
    text-align: center;
}

.logo {
    margin: 20px 0;
}

.logo img {
    max-width: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul li {
        margin: 0 10px;
    }

    .language-toggle {
        position: static;
        margin-left: auto;
    }
/* Responsive Styles */
@media (max-width: 768px) {
    /* Adjust header and footer for smaller screens */
    header, footer {
        font-size: 24px;
        padding: 15px 0;
    }
    
    /* Make navigation vertical on mobile */
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    /* Adjust padding for main content */
    main {
        padding: 10px;
    }
    
    /* Language toggle button size */
    .language-toggle button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Further reduce font sizes for very small screens */
    header, footer {
        font-size: 14px;
    }

    nav ul li {
        margin: 8px 0;
    }

    .language-toggle button {
        font-size: 12px;
    }

    /* Adjust padding and font size for the main content */
    main {
        padding: 8px;
        font-size: 14px;
    }
}
}