:root {
    --color-blue: #1C4DA1;
    --color-pink: #D1147E;
    --color-white: #FFFFFF;
    --color-text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.85); /* Slightly less transparent for better readability */
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-blue); /* Fallback */
    background-image: url('../img/fic_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--color-text-dark);
    overflow-x: hidden;
}

/* Overlay to ensure text readability if background is busy */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 77, 161, 0.2); /* Tint of corporate blue */
    z-index: 0;
}

.lang-switch-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 5px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-white);
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: var(--color-white);
    color: var(--color-blue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.lang-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.3);
}

.main-container {
    z-index: 1;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Top decorative bar */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-pink));
}

.logo-section {
    margin-bottom: 2rem;
}

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

.content-section {
    margin-bottom: 3rem;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(209, 20, 126, 0.1);
    color: var(--color-pink);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(209, 20, 126, 0.2);
}

.main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-blue);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.news-link {
    display: inline-block;
    background: linear-gradient(90deg, var(--color-blue), #2a5eb8);
    color: var(--color-white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(28, 77, 161, 0.3);
}

.news-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 77, 161, 0.4);
    background: linear-gradient(90deg, #2a5eb8, var(--color-blue));
}

.contacts-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    font-size: 0.95rem;
}

.contact-title {
    color: #666;
    margin-bottom: 5px;
    font-style: italic;
}

.contact-name {
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-link {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--color-pink);
}

.separator {
    color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    body {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .lang-switch-container {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 0;
        align-self: flex-end; /* Aligns to right if flex-dir is column */
        margin-right: 20px; /* Keep some spacing */
    }

    .glass-card {
        padding: 2rem 1.5rem;
        margin-top: 0;
    }
    
    .main-description {
        font-size: 1.2rem;
    }
    
    .logo {
        max-width: 200px;
    }

    .contact-details {
        flex-direction: column;
        gap: 5px;
    }
    
    .separator {
        display: none;
    }
}
