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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
}

.top-bar {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-logo {
    height: 60px;
    width: auto;
    margin-left: 12.5%;
}

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

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    vertical-align: baseline;
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover {
    color: #ccc;
}

.hero-feature-wrapper {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: transparent;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
    margin-left: 10%;
}


.main-title {
    font-size: 3.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -2px;
    background: linear-gradient(45deg, #fff, #ccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #bbb;
    font-weight: 300;
}


.globe-container {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.3;
}

.globe-image {
    width: 800px;
    height: auto;
    filter: brightness(0.7) contrast(1.2);
}

.feature-section {
    padding: 100px 5%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.feature-container {
    max-width: 900px;
    width: 100%;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 60px;
    border: 1px solid #333;
}

.feature-header {
    text-align: center;
    margin-bottom: 50px;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.feature-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
}

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

.feature-image {
    aspect-ratio: 1;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

.grid-item {
    background: linear-gradient(145deg, #2a2a2a, #333);
    padding: 20px;
    border: 1px solid #444;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.grid-item:nth-child(1) { 
    grid-column: 1 / 5;
    grid-row: 1;
}
.grid-item:nth-child(2) { 
    grid-column: 5 / 8;
    grid-row: 1;
}
.grid-item:nth-child(3) { 
    grid-column: 1 / 4;
    grid-row: 2;
}
.grid-item:nth-child(4) { 
    grid-column: 4 / 8;
    grid-row: 2;
}

.grid-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.grid-item p {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 300;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
}

.company-info-section {
    padding: 100px 5%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 40px;
    text-align: left;
    align-items: flex-start;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.contact-map {
    flex-shrink: 0;
    align-self: flex-end;
}

.contact-map iframe {
    max-width: 100%;
    height: 450px;
    width: 400px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

.contact-item p {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
}

.footer {
    background: #000;
    padding: 40px 5%;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info span {
    color: #ccc;
    font-weight: 300;
}

.map-section {
    padding: 60px 0;
    background: transparent;
    text-align: center;
}

.map-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
    color: #fff;
    text-align: center;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.network-map {
    max-width: 100%;
    height: auto;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: block;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red-dot {
    background-color: #ff4444;
}

.green-dot {
    background-color: #44ff44;
}

.legend-text {
    font-size: 1rem;
    color: #ccc;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: left;
        padding: 30px 5% 0 5%;
        justify-content: center;
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
    }
    
    .main-title {
        font-size: 2.5rem;
        text-align: left !important;
        width: 100%;
        margin-bottom: 20px;
        letter-spacing: -1px;
        display: block;
        white-space: normal;
    }
    
    .subtitle {
        font-size: 1.2rem;
        text-align: left !important;
        width: 100%;
        margin-bottom: 40px;
        display: block;
    }
    
    .globe-container {
        position: static;
        transform: none;
        margin-top: 50px;
        opacity: 0.2;
    }
    
    .globe-image {
        width: 300px;
    }
    
    .hero-content {
        margin-left: 0;
        margin-right: 0;
        margin-top: 25vh;
        max-width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-container {
        padding: 40px 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .feature-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(4, auto) !important;
        aspect-ratio: auto;
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        gap: 15px !important;
    }
    
    .grid-item {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .grid-item:nth-child(1) { 
        grid-column: 1;
        grid-row: 1;
    }
    .grid-item:nth-child(2) { 
        grid-column: 1;
        grid-row: 2;
    }
    .grid-item:nth-child(3) { 
        grid-column: 1;
        grid-row: 3;
    }
    .grid-item:nth-child(4) { 
        grid-column: 1;
        grid-row: 4;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .feature-subtitle {
        font-size: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-map iframe {
        width: 100% !important;
        height: 300px !important;
        max-width: 100% !important;
    }
    
    .top-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        top: 15px;
        left: 0;
        right: 0;
        width: 100%;
        padding-left: 0;
        padding-right: 35px;
    }
    
    .top-logo {
        height: 40px;
        margin-left: 30px !important;
        align-self: flex-start;
    }
    
    .language-switcher {
        justify-content: flex-end;
        align-self: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 10px;
    }
    
    .lang-btn {
        padding: 8px 0px;
        margin: 0;
    }
}

@media (max-width: 900px) {
    .feature-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        gap: 15px !important;
        box-sizing: border-box !important;
    }
    
    .grid-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        box-sizing: border-box !important;
        grid-column: unset !important;
        grid-row: unset !important;
    }
    
    .feature-content {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 30px !important;
    }
}