 header {
    background-color: #000;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Set a high z-index to ensure the menu is above other elements */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Optional: Style for hover effect */
nav a:hover {
    border-bottom: 2px solid white;
}
nav{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

  body {
    background-color: #FFF;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container {
            max-width: 600px;
            margin: auto;
        }

        form {
            margin-top: 20px;
            display: flex;
            max-width: 300px;
           flex-direction: column;
        }
        label {
            display: flex;
            align-items: center;
        }
        input[type="radio"] {
            margin-right: 5px;
        }
        .checkbox-label {
            display: flex;
            align-items: center;
        }
        #thankYouMessage {
            display: none;
            margin-top: 20px;
            font-weight: bold;
            color: green;
        }
        input[type="button"] {
            padding: 10px;
            border: none;
            border-radius: 4px;
            background-color: #007bff;
            color: #fff;
            cursor: pointer;
        }
        input[type="button"]:disabled {
            background-color: #B0C4FF;
            color: #555555;
            cursor: not-allowed;
        }
        .language-switcher {
  position: fixed;
  top: 10px;
  right: 20px;
}

.language-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.language-switcher li {
  display: inline;
  margin-right: 10px;
}

.language-switcher a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
 img {
            max-width: 100%; /* Make the image responsive */
            height: auto; /* Preserve aspect ratio */
            display: block; /* Ensure proper rendering */
            margin: 0 auto; /* Center the image */
        }
        .massage-container {
            display: flex;
            justify-content: space-between;
        }

        .massage {
            width: 20%; /* Adjust the width as needed */
        }

        .description {
            width: 80%; /* Adjust the width as needed */
        }
