:root {
  --primary-bg: linear-gradient(135deg, #FEE140 0%, #FA709A 100%);
  --accent-1: #f53131;    /* Bright teal */
  --accent-2: #FF3CAC;    /* Magenta */
  --text-color: #2D2D2D;  /* Near-black */
  --feature-bg: rgba(240, 203, 156, 0.9);
  --logo-container-bg: rgba(255, 255, 255, 0.9);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: var(--primary-bg);
    color: var(--text-color);
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.logo-container {
    padding: 30px;
    background: var(--logo-container-bg);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 340px;
    height: 340px;
}

.logo {
    width: 280px;
    height: 280px;
    display: block;
    transition: transform 0.3s ease;
}

h1 {
    font-size: 2.8em;
    color: var(--accent-1);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.opening-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #6B5E7C;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    background: var(--feature-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 40px 0;
    color: #5A5260;
    border: 1px solid rgba(0,0,0,0.05);
}

.features h2 {
    color: var(--accent-1);
    margin-bottom: 25px;
    font-size: 1.8em;
}

.features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    margin-bottom: 15px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border-left: 4px solid;
    border-left-color: var(--accent-2);
    transition: all 0.3s ease;
}

.features li:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    border-left: 4px solid;
    border-left-color: var(--accent-1);
}

.contact {
    margin-top: 30px;
    padding: 20px;
    background: var(--feature-bg);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact a {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: bold;
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.flag-icon {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* ─── ENISA FULL‑WIDTH BANNER ─────────────────────────────────── */
.enisa-container {
    width: 100%;                          /* span full viewport */
    background: var(--feature-bg);        /* match the other panels */
    display: flex;                        
    justify-content: flex-end;            /* push image to the right */
    align-items: center;                  /* vertically center */
    padding: 20px 40px;                   /* adjust as you like */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 1px solid rgba(0,0,0,0.05);
    box-sizing: border-box;               /* include padding in width */
}

.enisa-logo {
    max-width: 200px;                     /* cap image size */
    height: auto;
    display: block;
}
@media (max-width: 600px) {
    .enisa-container {
        padding: 15px 20px;
    }
    .enisa-logo {
        max-width: 140px;
    }
}

/* Add responsive design */
@media (max-width: 600px) {
    .container {
        padding: 30px 15px;
    }
    
    .logo-container {
        width: 260px;
        height: 260px;
        padding: 20px;
    }
    
    .logo {
        width: 220px;
        height: 220px;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    .features {
        padding: 20px;
    }

    .language-switcher {
        top: 15px;
        right: 15px;
    }
    
    .lang-btn {
        width: 30px;
        height: 30px;
        padding: 6px;
    }
}