* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

header {
    background-color: #333;
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

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

.divider {
    display: flex;
    align-items: flex-start;
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 20px;
}

.divider button {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.content {
    flex: 1;
    margin-right: 20px;
    text-align: center;
}

.main-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.feature-list {
    list-style: disc;
    margin-left: 20px;
    font-size: 18px;
    color: #333;
}

.image-container {
    flex: 1;
    text-align: right;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

main {
    padding: 20px;
    text-align: center;
}

.languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.language-box {
    width: 150px;
    margin: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.636); 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 10px;
}

.language-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.language {
    display: flex;
    align-items: center;
    justify-content: center;
}

.language img {
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

.language h3 {
    font-size: 16px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
