:root {
    --primary-color: #4AA32E;
    --secondary-color: #2C3E50;
    --background-color: #F8F9FA;
    --card-background: #FFFFFF;
    --text-color: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    background-color: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 30px;
    margin-top: 40px;
}

h1 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.info-section {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-label {
    font-weight: 500;
    min-width: 120px;
    margin-right: 20px;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
    background-color: #f0f0f0;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.95em;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.5em;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.image-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
    }
    .info-label {
        margin-bottom: 5px;
    }
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
    position: relative;
}
.language-switch-container {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
}
.language-switch {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}
.language-switch:hover {
    background-color: #e9ecef;
}
.language-switch.active {
    background-color: #7ED042;
    color: white;
}
h1 {
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    margin-right: 60px;
}
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
    }
    .language-switch-container {
        justify-content: left;
    }
    h1 {
        margin-right: 0;
    }
}