body {
    font-family: 'Roboto', sans-serif;
    background-color: #f3f4f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.language-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: flex;
    border: 1px solid #4b5563;
    border-radius: 0.375rem;
    overflow: hidden;
    background-color: #1f2937;
}

.language-switcher button {
    padding: 0.25rem 0.75rem;
    background: transparent;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.language-switcher button:hover {
    background-color: #111827;
}

.language-switcher button.active {
    background-color: #4b5563;
}

header {
    background-color: #1f2937;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 0;
}

header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
}

header p {
    margin-top: 0.5rem;
    font-size: 1rem;
}

.shops-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.shops-section h2,
.contact-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.shops-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
}

.image-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 33vh;
}

.image-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1/1;
}

@media (min-width: 768px) {
    .image-grid {
        flex-direction: row;
    }
    .image-grid img {
        width: 50%;
    }
}

.about-section {
    background-color: #f3f4f6;
    padding: 5rem 0;
}

.about-section p {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
}

.contact-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

.contact-card {
    max-width: 24rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    text-align: center;
    height: 24rem;
}

.contact-card p {
    color: #374151;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.contact-card strong {
    color: #374151;
}

.back-link {
    padding: 1rem 0;
    background-color: #f3f4f6;
}

.back-link a {
    color: #1a73e8;
    text-decoration: underline;
}

.back-link a:hover {
    color: #1557b0;
}

a.underline {
    color: #1a73e8;
    text-decoration: underline;
}

a.underline:hover {
    color: #1557b0;
}

footer {
    background-color: #1f2937;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: auto;
}

footer p {
    margin: 0;
    font-size: 1rem;
}
