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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.content {
    margin: 30px 0;
}

.content.hidden {
    display: none;
}

.content h2 {
    color: #c62828;
    font-size: 2em;
    margin-bottom: 15px;
}

.subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
    font-style: italic;
}

.info-box, .contact-box {
    background: #f5f5f5;
    border-left: 4px solid #c62828;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: left;
}

.info-box h3, .contact-box h3 {
    color: #c62828;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.info-box p, .contact-box p {
    color: #2d2d2d;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-box a {
    color: #c62828;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-box a:hover {
    color: #d32f2f;
    text-decoration: underline;
}

.language-toggle {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.language-toggle button {
    padding: 10px 25px;
    font-size: 1em;
    border: 2px solid #c62828;
    background: white;
    color: #c62828;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.language-toggle button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.language-toggle button.active {
    background: #c62828;
    color: white;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #757575;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    .logo img {
        max-width: 250px;
    }
    
    .content h2 {
        font-size: 1.5em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    .container {
        padding: 25px;
    }
}
