* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 300px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #4a90e2;
    letter-spacing: 2px;
}

.nav-menu {
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #4a90e2;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
}

.lang-btn {
    padding: 8px 15px;
    border: 2px solid #4a90e2;
    background: #fff;
    color: #4a90e2;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #4a90e2;
    color: #fff;
}

.lang-btn.active {
    background: #4a90e2;
    color: #fff;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a90e2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-title {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.service-description {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #fff;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    flex: 0 0 auto;
    max-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:first-child {
    background: #fff;
}

.partner-logo:first-child img {
    filter: grayscale(0%) brightness(1.1) contrast(1.3);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 10px;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-section i {
    color: #4a90e2;
    width: 20px;
}

.map-section {
    grid-column: span 1;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    border-radius: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.copyright {
    font-size: 14px;
    color: #bdc3c7;
}

.copyright a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #fff;
}

.facebook-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #3b5998;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.facebook-icon:hover {
    transform: scale(1.1);
    background: #4a6fa5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        position: relative;
    }

    .logo img {
        height: 50px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-menu {
        order: 4;
        width: 100%;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        margin-top: 10px;
        border-radius: 8px;
    }

    .nav-list.active {
        max-height: 400px;
        padding: 20px;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }
    
    .language-switcher {
        order: 3;
        margin-left: auto;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero {
        height: 300px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .service-image {
        height: 200px;
    }

    .service-title {
        font-size: 20px;
        padding: 15px 15px 8px;
    }

    .service-description {
        padding: 0 15px 15px;
        font-size: 14px;
    }

    .partners {
        padding: 60px 0;
    }

    .partners-grid {
        gap: 20px;
        justify-content: center;
    }

    .partner-logo {
        max-width: 140px;
        height: 70px;
        padding: 15px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-section {
        grid-column: span 1;
    }

    .map-container {
        height: 250px;
    }

    .map-container iframe {
        height: 250px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 8px 0;
    }

    .logo img {
        height: 45px;
    }

    .header-content {
        gap: 10px;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .hero {
        height: 250px;
    }

    .services {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-image {
        height: 180px;
    }

    .service-title {
        font-size: 18px;
        padding: 12px 12px 6px;
    }

    .service-description {
        padding: 0 12px 12px;
        font-size: 13px;
    }

    .partners {
        padding: 40px 0;
    }

    .partners-grid {
        gap: 15px;
    }

    .partner-logo {
        max-width: 120px;
        height: 60px;
        padding: 10px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .map-container {
        height: 200px;
    }

    .map-container iframe {
        height: 200px;
    }

    .copyright {
        font-size: 12px;
    }

    .facebook-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* GDPR Cookie Consent Banner */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gdpr-text {
    flex: 1;
    min-width: 250px;
}

.gdpr-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.gdpr-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gdpr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gdpr-accept {
    background: #4a90e2;
    color: #fff;
}

.gdpr-accept:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.gdpr-decline {
    background: #95a5a6;
    color: #fff;
}

.gdpr-decline:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gdpr-banner {
        padding: 15px;
    }

    .gdpr-content {
        flex-direction: column;
        text-align: center;
    }

    .gdpr-text {
        width: 100%;
        margin-bottom: 15px;
    }

    .gdpr-buttons {
        width: 100%;
        justify-content: center;
    }

    .gdpr-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .gdpr-banner {
        padding: 12px;
    }

    .gdpr-text p {
        font-size: 12px;
    }

    .gdpr-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}
