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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f5f5f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.lang-switcher {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.lang-switcher a {
    color: #2d3748;
    text-decoration: none;
    margin: 0 2px;
    transition: color 0.2s ease;
}

.lang-switcher a:hover {
    color: #f26c2e;
}

.lang-switcher .separator {
    color: #a0aec0;
    margin: 0 2px;
}

.info-section {
    padding: 60px 50px;
    background: #ffffff;
    color: #1a202c;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-section h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.info-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-section {
    padding: 60px 50px;
    background: #f7fafc;
}

.contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: #1a202c;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 28px;
    display: flex;
    align-items: start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: #f26c2e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-details h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #718096;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-details p {
    font-size: 1.05rem;
    color: #2d3748;
}

.contact-details a {
    color: #f26c2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #d9571e;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .info-section {
        padding: 40px 30px;
    }

    .info-section h1 {
        font-size: 2rem;
    }

    .info-section p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 40px 30px;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .info-section,
    .contact-section {
        padding: 30px 24px;
    }

    .info-section h1 {
        font-size: 1.75rem;
    }

    .contact-item {
        margin-bottom: 24px;
    }
}

/* Dark mode overrides */
@media (prefers-color-scheme: dark) {
    body {
        color: #e5e7eb;
        background: #141820;
    }

    .container {
        background: #161c24;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    }

    .lang-switcher a {
        color: #e5e7eb;
    }
    .lang-switcher a:hover {
        color: #f26c2e;
    }
    .lang-switcher .separator {
        color: #6b7280;
    }

    .info-section {
        background: #161c24;
        color: #e5e7eb;
    }
    .info-section h1 {
        color: #f3f4f6;
    }
    .info-section p {
        opacity: 0.95;
    }

    .contact-section {
        background: #131821;
    }
    .contact-section h2 {
        color: #f3f4f6;
    }

    .contact-details h3 {
        color: #9aa4b2;
    }
    .contact-details p {
        color: #e5e7eb;
    }
    .contact-details a {
        color: #f26c2e;
    }
    .contact-details a:hover {
        color: #d9571e;
    }

    .contact-icon {
        background: #f26c2e;
    }
}
