* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #444444;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
}

.logo h1 span {
    color: #444444;
    font-weight: 400;
}

.logo-subtitle {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #444444;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #000000;
}

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

.lang-btn {
    background: none;
    border: 2px solid #cdcdcd;
    border-radius: 3px;
    padding: 5px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
    border-color: #444444;
}

.lang-btn.active {
    opacity: 1;
    border-color: #000000;
    background-color: #f5f5f5;
}

.lang-btn img {
    width: 30px;
    height: 20px;
    display: block;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.3);
    color: #ffffff;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(255,255,255,0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #ffffff;
}

/* Stats Section */
.stats-section {
    background-color: #eeeeee;
    padding: 60px 0;
}

.stats-section .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Company Section */
.company-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.company-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.company-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.company-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}

.company-text h3 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: #000000;
}

.company-text ul {
    list-style: none;
    padding-left: 0;
}

.company-text ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #444444;
}

.company-text ul li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 20px;
}

/* Partners Section */
.partners-section {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.partners-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-container {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer-logo h2 span {
    color: #cdcdcd;
    font-weight: 400;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 14px;
    color: #cdcdcd;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .company-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .stat-number {
        font-size: 42px;
    }
}