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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #4a5f7f 0%, #5b7396 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #232323;
}

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

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

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 250px;
    height: auto;
}

.language-switcher {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

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

.lang-btn:hover {
    background: #e0e0e0;
}

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

.content {
    position: relative;
    min-height: 300px;
}

.lang-content {
    display: none;
    animation: slideIn 0.4s ease-in-out;
}

.lang-content.active {
    display: block;
}

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

h1 {
    font-size: 32px;
    color: #4a5f7f;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.message {
    background: #f8f9fa;
    border-left: 4px solid #4a5f7f;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.message p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.message p:last-child {
    margin-bottom: 0;
}

.contact {
    background: #fff9e6;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    border: 1px solid #ffe066;
}

.contact p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.contact p:last-child {
    margin-bottom: 0;
}

.contact strong {
    color: #333;
    font-size: 16px;
}

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

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

.hours {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.social a {
    display: inline-block;
    color: #cc1800;
    transition: all 0.3s ease;
}

.social a:hover {
    color: #ea352d;
    transform: scale(1.1);
}

footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

footer p {
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }

    h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .message,
    .contact {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 14px;
    }

    .lang-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

