/* CREIB Corporate Colors */
:root {
    --creib-orange: #CC6600;
    --creib-gray: #999999;
    --creib-dark-gray: #333333;
    --creib-light-gray: #F5F5F5;
    --creib-green: #8BC34A;
    --creib-blue: #2196F3;
    --creib-yellow: #FFC107;
    --creib-red: #F44336;
    --creib-purple: #9C27B0;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--creib-light-gray) 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--creib-dark-gray);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    width: 90%;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Language Selector */
.language-selector {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 30px;
}

.lang-btn {
    padding: 8px 20px;
    border: 2px solid var(--creib-orange);
    background: white;
    color: var(--creib-orange);
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--creib-light-gray);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--creib-orange);
    color: white;
}

/* Logo */
.logo {
    margin: 20px auto 40px;
    max-width: 500px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.content {
    animation: fadeIn 0.5s ease;
}

.content.hidden {
    display: none;
}

h1 {
    color: var(--creib-orange);
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.subtitle {
    color: var(--creib-gray);
    font-size: 1.2em;
    margin-bottom: 30px;
    font-style: italic;
}

.message {
    background: var(--creib-light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--creib-orange);
}

.message p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--creib-dark-gray);
}

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

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--creib-light-gray);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--creib-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 102, 0, 0.2);
}

.contact-item .icon {
    font-size: 1.5em;
}

.contact-item a {
    color: var(--creib-orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--creib-light-gray);
    color: var(--creib-gray);
    font-size: 0.9em;
}

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

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

    h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .message {
        padding: 20px;
    }

    .message p {
        font-size: 1em;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

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