
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
}

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

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-buttons .get-started {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 36px;
    margin: 0;
}

.hero p {
    margin: 20px 0;
}

.hero .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero .buttons a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.hero .buttons .demo {
    background-color: #007bff;
    color: white;
}

.hero .buttons .video {
    border: 1px solid #007bff;
    color: #007bff;
}

/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Moved to the right */
}

.language-switcher button {
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.language-switcher button:hover {
    background: #e7f0ff;
}

.Service-Description {
    flex: 1; /* Allow equal spacing for each div */
    text-align: center; /* Center-align content inside each div */
}

.Service-Container {
    display: flex; /* Use flexbox to align items in a row */
    gap: 20px; /* Add spacing between the divs */
    justify-content: center; /* Center the divs horizontally */
    padding: 20px; /* Add padding around the container */
}
