
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #f4f1ea;
    color: #212121;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background-color: #ffffff;
    padding: 1rem 2rem; 
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 1rem;
}

h1 {
    font-size: 1.5rem;
    margin: 0;
}

h1 a {
    color: #212121;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

li {
    margin-left: 1.5rem;
}

a {
    text-decoration: none;
    color: #d92f23;
    transition: color 0.3s ease;
}

a:hover {
    color: #212121;
}

#hero {
    text-align: center;
    padding: 3rem 0;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-store-links {
    margin-top: 2rem;
}

.app-store-links img {
    height: 50px;
    margin: 0.5rem;
    transition: transform 0.3s ease;
}

.app-store-links img:hover {
    transform: scale(1.05);
}

section {
    padding: 2rem 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.feature-list, .language-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item, .language-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover, .language-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.language-item span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.social-links {
    text-align: center;
}

.social-links a {
    display: inline-block;
    margin: 0 1rem;
}

.social-links img {
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
}

.mobile-nav {
    display: none;
}


/* Media Queries */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-list, .language-list {
        grid-template-columns: 1fr;
    }

    .app-store-links img {
        height: 40px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-around;
        padding: 1rem 0;
        background: #f4f1ea;
    }
    
    .logo h1 {
        white-space: nowrap;
    }
    
    .mobile-nav li {
        margin: 0;
    }
}
