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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: #2d7a5f;
    font-size: 1.5rem;
    font-weight: 600;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    color: #666;
}

.lang-btn:hover {
    border-color: #2d7a5f;
    color: #2d7a5f;
    background: #f0f9f6;
}

.lang-btn.active {
    background: #2d7a5f;
    color: white;
    border-color: #2d7a5f;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f9f6 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

/* About Section */
.about {
    padding: 4rem 2rem;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
    color: #555;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background: #fafafa;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(45, 122, 95, 0.12);
    border-color: #2d7a5f;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2d7a5f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: #fff;
}

.pricing h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 600;
}

.price-card {
    max-width: 500px;
    margin: 0 auto;
    background: #f0f9f6;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(45, 122, 95, 0.1);
    text-align: center;
    border: 2px solid #2d7a5f;
}

.price-amount {
    font-size: 3rem;
    color: #2d7a5f;
    margin-bottom: 2rem;
    font-weight: 700;
}

.currency {
    font-size: 2rem;
}

.period {
    font-size: 1.5rem;
    color: #555;
    font-weight: 400;
}

.price-features {
    list-style: none;
    text-align: left;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(45, 122, 95, 0.2);
    font-size: 1.05rem;
    color: #333;
}

.price-features li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: #fafafa;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: #2d7a5f;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .language-selector {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

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

    .service-grid {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .about, .services, .pricing, .contact {
        padding: 3rem 1.5rem;
    }
}
