body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #4c5c96;
    color: #fff;
    text-align: center;
    padding: 1em;
    position: relative;
}

.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
}

.language-switcher img {
    width: 30px;
    margin: 0 5px;
    cursor: pointer;
}

.centered-menu {
    text-align: center;
    margin-top: 20px;
}

.menu {
    list-style: none;
    padding: 10;
}

.menu li {
    display: block; /* Change to block for mobile view */
    margin-bottom: 10px; /* Add margin for better spacing */
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    display: block; /* Add display block for better spacing */
}

.menu a:hover {
    color: #555;
}

.intro,
.services,
.about,
.contact {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
}

.intro p {
    text-align: justify;
}

.mySlides img {
    width: 100%;
    max-height: 30vh;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    margin-bottom: 10px;
}

h2 {
    color: #4c5c96;
    border-bottom: 2px solid #4c5c96;
    padding-bottom: 10px;
    text-align: left;
}

.fade-in {
    opacity: 0;
    animation: fadeIn ease-in-out 1.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo img {
    width: 100px;
    height: auto;
}

.form-row {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    width: 100px;
}

input, textarea {
    width: 100%;
}

/* Add this CSS for mobile responsiveness */
@media only screen and (max-width: 600px) {
    .menu li {
        display: inline-block; /* Revert back to inline-block for larger screens */
        margin-bottom: 0; /* Remove margin for inline-block */
    }

    .menu a {
        display: inline-block; /* Revert back to inline-block for larger screens */
        margin-right: 10px; /* Add margin for better spacing */
    }
}
/* Add this CSS for the footer styling */
p {
    max-width: 95%; /* Set a maximum width for the paragraph */
    word-wrap: break-word; /* Allow long words to be broken and wrap to the next line */
    overflow: hidden; /* Hide any content that overflows the container */
}

footer {
    background-color: #4c5c96;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
}

