body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    overflow-x: hidden;
}

header,
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1em;
}

footer a {
    color: #ffd500;
    text-decoration: underline;
}

footer a:hover {
    text-decoration: underline;
}

nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.container {
    padding: 20px;
    text-align: center;
}

.section {
    width: 100%;
    margin-bottom: 40px;
}

.section h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.item-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.item-row div {
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-row img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 10px;
    transition: 0.3s;
}

.item-row img:hover {
    border-color: #333;
    transform: scale(1.05);
}

.caption {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.lang-switch {
    position: absolute;
    top: 10px;
    right: 10px;
}

.lang-switch button {
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
}

.project-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-logos img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ccc;
    transition: 0.3s ease;
    object-fit: cover;
    background: white;
    padding: 5px;
}

.project-logos img:hover {
    transform: scale(1.1);
    border-color: #111;
}

.contact-horizontal {
    background: linear-gradient(to right, #1e1e1e, #2c2c2c);
    color: white;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1320px;
    margin: 0 auto;
}

.contact-card {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    width: 100%;
    flex: 1 1 300px;
    max-width: 360px;
}

.contact-opening {
    width: 100%;
    flex: 1 1 300px;
    max-width: 360px;
}

.contact-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-card a {
    color: #3498db;
    text-decoration: none;
}

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

.contact-icon-location {
    color: #ff5e57;
}

.contact-icon-time {
    color: #f1c40f;
}

.contact-icon-phone {
    color: #1abc9c;
}

.contact-icon-facebook {
    color: #9b59b6;
}

.contact-card p {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #e0e0e0;
}

.contact-card p strong {
    color: #fff;
}

.contact-card .highlight {
    font-weight: bold;
    color: #fff;
    font-size: 16px;
}

#site-content.blocked {
    pointer-events: none;
    filter: blur(2px);
}

#cookie-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

#cookie-banner.visible {
    display: flex;
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.logos a {
    display: block;
    width: 120px;
    height: 120px;
}

.logos img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: white;
    padding: 8px;
    transition: 0.3s ease;
}

.logos img:hover {
    transform: scale(1.1);
    border-color: #111;
}

@media (max-width: 768px) {
    .section h3 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 20px;
    }

    nav {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    nav a {
        margin: 8px 0;
        font-size: 15px;
    }

    .lang-switch button {
        font-size: 14px;
        padding: 12px 12px;
        margin: 5px 5px;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-card,
    .contact-opening {
        width: 100%;
        max-width: 90%;
        padding: 14px 12px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        max-height: 100px;
    }

    .contact-card h4 {
        font-size: 15px;
        margin: 4px 0;
    }

    .contact-card p {
        font-size: 13px;
        line-height: 1.3;
        margin: 2px 0;
    }

    .contact-card .highlight {
        font-size: 14px;
    }

    h1,
    h2 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .section h3 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 20px;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    nav a {
        display: block;
        margin: 10px 0;
        font-size: 14px;
    }

    .lang-switch button {
        font-size: 12px;
        padding: 10px 10px;
        margin: 5px 5px;
    }

    .contact-horizontal {
        padding: 28px 16px;
    }

    .contact-grid {
        gap: 18px;
    }

    .contact-card,
    .contact-opening {
        width: 100%;
        max-width: 95%;
        padding: 12px 10px;
        border-radius: 7px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        max-height: 100px;
    }

    .contact-card h4 {
        font-size: 14px;
        margin: 3px 0;
    }

    .contact-card p {
        font-size: 12.5px;
        line-height: 1.25;
        margin: 1px 0;
    }

    .contact-card .highlight {
        font-size: 13px;
    }

    h1,
    h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section h3 {
        text-align: center;
        font-size: 16px;
        margin-bottom: 20px;
    }

    nav a {
        font-size: 13px;
    }

    .lang-switch button {
        font-size: 10px;
        padding: 8px 8px;
        margin: 5px 5px;
    }

    .contact-horizontal {
        padding: 24px 12px;
    }

    .contact-grid {
        gap: 16px;
    }

    .contact-card,
    .contact-opening {
        width: 100%;
        max-width: 340px;
        padding: 10px 8px;
        border-radius: 6px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
        max-height: 120px;
    }

    .contact-card h4 {
        font-size: 14px;
        margin: 2px 0;
    }

    .contact-card p {
        font-size: 14px;
        line-height: 1.8;
        margin: 6px 0;
    }

    .contact-card .highlight {
        font-size: 14px;
    }

    h1,
    h2 {
        font-size: 18px;
    }
}