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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    width: 40px;
    height: 40px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 5px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #e9ecef;
    color: #333;
}

.lang-btn.active {
    background: #3498db;
    color: white;
}

/* Hero */
.hero {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 50px 0;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.service {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3498db;
}

.service p {
    color: #666;
    margin-bottom: 15px;
}

.service-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #2980b9;
}

.coming-soon {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About */
.about {
    padding: 50px 0;
    background: #fff;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    color: #27ae60;
}

.about p {
    color: #666;
    margin-bottom: 15px;
}

/* Contact */
.contact {
    padding: 50px 0;
    background: #f8f9fa;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact p {
    color: #666;
    margin-bottom: 20px;
}

.contact a {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.contact a:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.footer-links a:hover {
    border-bottom-color: #ecf0f1;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

footer a:hover {
    opacity: 0.8;
}

footer img {
    width: 20px;
    height: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .language-toggle {
        order: -1;
    }
}
