* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 120px;
}

.language-switcher button {
    background: none;
    border: none;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    font-weight: 500;
    color: #888;
    transition: color 0.3s;
}

.language-switcher button.active {
    color: #ff6b6b;
    border-bottom: 2px solid #ff6b6b;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.app-buttons {
    margin-top: 30px;
}

.app-button {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s;
}

.app-button:hover {
    transform: translateY(-3px);
}

.app-button img {
    height: 50px;
}

/* Features Section */
.features {
    padding: 60px 5%;
    text-align: center;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #555;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 2em;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    color: #ff6b6b;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 5%;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    margin: 0 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-links a.current {
    color: #ff6b6b;
    font-weight: bold;
}

.copyright {
    color: #888;
    font-size: 0.9em;
}

/* Content Pages */
.content-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-page h1 {
    text-align: center;
    margin-bottom: 40px;
}

.content-page h2 {
    color: #ff6b6b;
    margin: 30px 0 15px;
}

.content-page p {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .features {
        flex-direction: column;
    }
}