* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #6A7BA2;
    padding: 1rem;
    color: white;
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px;
    height: 120px;
}

.logo h1 {
    margin-left: 15px;
    font-size: 36px;
    text-transform: lowercase;
}

nav {
    margin-top: 20px;
    margin-left: 15px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;  
    justify-content: space-between;
    list-style: none;
    padding: 0;
}


nav ul li {
	margin-right: 20px;
	margin: 15px;
}

.menu-btn {
    background-color: #fff;
    color: #6A7BA2;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #6A7BA2;
}

.menu-btn:hover {
    background-color: #6A7BA2;
    color: #fff;
}

.flag-icon {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.language-btn {
    background-color: #A3A9AC;
    border: 2px solid #A3A9AC;
}

.language-btn img {
    width: 20px;
    height: auto;
}

.language-btn:hover {
    background-color: #6A7BA2;
    border-color: #6A7BA2;
}


.hero {
    background-color: #6A7BA2;
    color: white;
    padding: 2rem;
    text-align: left;
}

.slogan {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 15px;
}

section {
    padding: 3rem 2rem;
    text-align: center;
}

.services-overview .small-logo, .how-it-works .small-logo, .pricing .small-logo, .why .small-logo, .contact .small-logo {
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.services-columns {
    display: flex;
    justify-content: space-between;
}

.services-columns .column {
    flex: 1;
    margin: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.features {
    margin-top: 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.features .feature {
    background: white;
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex: 1 1 250px;
    max-width: 400px;
}

.contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.contact form input, .contact form textarea {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact form button {
    padding: 1rem;
    border: none;
    background-color: #6A7BA2;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
}




footer {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    /* Make the menu stack vertically on small screens */
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    /* Center-align the menu items */
    nav ul li {
        text-align: center;
        width: 100%;
    }
}

/* Style for the button when it's disabled */
#submitButton:disabled {
    background-color: #cccccc; /* Grey background */
    color: #666666; /* Grey text */
    cursor: not-allowed; /* Not-allowed cursor */
    opacity: 0.6; /* Slight transparency */
}

/* Normal button styling */
#submitButton {
    background-color: #6A7BA2; /* Blue background */
    color: #fff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#submitButton:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
