
.feature-list li div, .feature-list li table {
    flex: 1;  /* Make the text or table take the remaining space */
}

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;

}

/* Header and Navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    flex-direction: column;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.navbar li {
    margin-left: 20px;
    display: inline-block;

}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #ff9800;
}

/* Language Switcher */
.language-switcher select {
    padding: 5px;
    border-radius: 4px;
    border: none;
    text-align: center;
    justify-content: center;
}

/* Main Container Styling */
.main-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    justify-content: center;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
/* Footer */
.footer-content {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar li {
        margin: 10px 0;
    }

    .feature-list li {
        width: 100%;
    }

    .introduction, .features {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .intro-text h1 {
        font-size: 2em;
    }

    .intro-text p, .feature-list div {
        font-size: 1em;
        flex: 1;  /* Make the text or table take the remaining space */
    }

    .feature-list li {
        flex-direction: column;  /* Stack image and text vertically on smaller screens */
        align-items: flex-start;
    }

    .feature-list li table {
        flex:1;
    }

    .feature-list img {
        width: 80px;
        height: auto;        
        margin-right: 0;
        margin-bottom: 10px;
        max-width: 100px;  /* Further reduce the image size on smaller screens */
    }

}
@media (max-width: 576px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar li {
        width: 100%;
        margin: 5px 0;
    }

    .language-switcher {
        margin-top: 10px;
    }

    .introduction {
        flex-direction: column;
    }

    .intro-illustration {
        padding: 10px 0;
    }

    .feature-list li {
        width: 100%;
    }

    .feature-list li table {
        flex:1;
    }
    .cta p {
        font-size: 1em;
    }

    .cta button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-text h1 {
        font-size: 2em;
    }

    .intro-button button {
        padding: 10px 15px;
    }

    .cta button {
        padding: 10px 15px;
    }

    .feature-list li table {
        flex:1;
    }
}
