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

:root {
    --text-dark: #000000;
    --text-light: #333333;
    --bg-light: #ffffff;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.nav-menu a.active {
    color: #000000;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000000;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    min-width: 50px;
}

.lang-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.lang-btn.active {
    background-color: #000000;
    color: #ffffff;
}

.lang-code {
    font-size: 0.85rem;
    line-height: 1;
}

.lang-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    display: block;
    border: 1px solid #ccc;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #000000;
    padding: 120px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333333;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s both;
    border: 2px solid #000000;
}

.cta-button:hover {
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #ffffff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: #000000;
}

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

.feature-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.feature-card p {
    color: #333333;
    line-height: 1.8;
}

/* About Page */
.about-hero {
    background: #ffffff;
    color: #000000;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-intro {
    font-size: 1.25rem;
    color: #333333;
}

.about-content {
    padding: 80px 20px;
}

.about-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.about-section p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid var(--border-color);
    border-left: 4px solid #000000;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-list strong {
    color: #000000;
    display: block;
    margin-bottom: 0.5rem;
}

/* Image Container */
.image-container {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    display: block;
    margin: 0 auto;
}

/* Map Container */
.map-container {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 1px solid var(--border-color);
}

/* Contact Email */
.contact-email {
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.contact-email a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #000000;
    transition: opacity 0.3s ease;
}

.contact-email a:hover {
    opacity: 0.7;
}

/* Opening Hours Table */
.opening-hours-note {
    margin-bottom: 1rem;
    color: #333333;
}

.opening-hours-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    margin-top: 1rem;
}

.opening-hours-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    color: #000000;
}

.opening-hours-table td:first-child {
    font-weight: 500;
}

.opening-hours-table tr:last-child td {
    border-bottom: none;
}

/* Footer */
footer {
    background-color: #ffffff;
    color: #000000;
    padding: 2rem 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: #666666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

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

    .nav-menu {
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
        min-width: 45px;
    }
    
    .lang-code {
        font-size: 0.75rem;
    }
    
    .lang-flag {
        font-size: 1rem;
    }
}

