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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: #f0f0f0;
    border: 2px solid #ddd;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #e0e0e0;
    border-color: #0078d4;
}

.lang-btn.active {
    background: #0078d4;
    color: white;
    border-color: #0078d4;
}

.content {
    margin-top: 20px;
}

.logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.logo {
    width: 150px;
    height: 150px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.company-name {
    font-size: 48px;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.company-full-name {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.message {
    margin-top: 40px;
}

.message h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.message p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .company-name {
        font-size: 36px;
    }
    
    .message h2 {
        font-size: 24px;
    }
    
    .message p {
        font-size: 16px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
}

