
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 5%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo img {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}
nav a:hover {
    color: #f39c12;
}
.slider {
    position: relative;
    max-width: 80%;
    margin: 20px auto;
    overflow: hidden;
}
.slide {
    display: none;
    width: 100%;
}
.slide img {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 8px;
}
.active {
    display: block;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #333;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    user-select: none;
    background-color: rgba(255,255,255,0.7);
}
.next {
    right: 0;
}
.prev:hover, .next:hover {
    background-color: #f39c12;
    color: white;
}
.dots {
    text-align: center;
    padding: 15px 0;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.dot.active, .dot:hover {
    background-color: #f39c12;
}
section {
    padding: 40px 5%;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 8px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.gallery-item {
    flex: 1 1 calc(25% - 20px);
    background-color: #fafafa;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}
.gallery-item img {
    max-height: 220px;
    width: 100%;
    object-fit: contain;
    border-radius: 4px;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.contact-card {
    display: flex;
    flex-direction: row;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 45%;
    min-height: 200px;
    align-items: center;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.contact-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}
.contact-info {
    flex-grow: 1;
}
.contact-info h3 {
    margin: 0 0 10px 0;
}
.contact-info .flags img {
    height: 20px;
    margin-right: 5px;
}
.hidden-contact {
    display: none;
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #aaa;
    font-size: 0.9em;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .gallery {
        flex-direction: column;
        align-items: center;
    }
    .gallery-item {
        flex: 1 1 100%;
    }
    .contact-grid {
        flex-direction: column;
        gap: 20px;
    }
    .contact-card {
        width: 100%;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .contact-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.social-icons {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.social-icons img:hover {
    transform: scale(1.2);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher img {
    height: 18px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    vertical-align: middle;
}


.language-switcher img:hover {
    transform: scale(1.1);
}
.offer-section {
    padding: 60px 5%;
    background-color: #fff;
    text-align: center;
}

.offer-section .intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: #444;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.offer-box {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.offer-box h3 {
    margin-bottom: 10px;
    color: #222;
}

.offer-box p {
    color: #555;
    font-size: 0.95em;
}
.offer-box img {
  max-width: 250px;
  max-height: 150px;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 6px;
  object-fit: cover;
}
