        /* Setări generale pentru conținut */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px 20px;
            font-family: Arial, sans-serif;
            color: #333;
        }

        .page-title {
            text-align: center;
            font-weight: 700;
            margin: 5% 0;
            color: #1a365d;
            /* Albastru inchis institutional */
        }

        /* Zona de alertă / documente (Regulament) */
        .info-text {
            background-color: #f8fafc;
            border-left: 4px solid #3b82f6;
            /* Albastru deschis */
            padding: 15px 20px;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .info-text a {
            color: #1a365d;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-text a:hover {
            color: #3b82f6;
            text-decoration: underline;
        }

        /* Container Organigramă */
        .organigrama-container {
            text-align: center;
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 4rem;
            border: 1px solid #e2e8f0;
        }

        .info-organigrama {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .info-organigrama:hover {
            transform: scale(1.02);
        }

        /* Buton descărcare PDF */
        .btn {
            display: inline-block;
            background-color: #e53e3e;
            /* Roșu medical */
            color: #ffffff !important;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .btn:hover {
            background-color: #c53030;
            box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
            text-decoration: none;
        }

        /* Secțiunea de Substații */
        .section-title {
            color: #1a365d;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 10px;
            margin-bottom: 30px;
            font-size: 1.8rem;
            text-indent: 30px;
        }

        .substatii-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 1rem;
        }

        /* Carduri Stații */
        .statie-card {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-left: 5px solid #3b82f6;
            /* Accent albastru pe stânga */
            border-top: 1px solid #f1f5f9;
            border-right: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .statie-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .statie-card h4 {
            margin-top: 0;
            margin-bottom: 15px;
            color: #2d3748;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .statie-card p {
            margin: 8px 0;
            font-size: 0.95rem;
            color: #4a5568;
        }

        .statie-card strong {
            color: #2d3748;
        }

        /* Stil special pentru Stația Centrală */
        .statie-centrala {
            border-left-color: #e53e3e;
            /* Roșu */
            background: #fff5f5;
            /* Fundal ușor roșiatic */
        }

        .page-title {
            text-align: center;
            font-weight: 700;
            margin: 5% 0 40px 0;
            color: #1a365d;
            /* Albastru instituțional */
            font-size: 2.2rem;
        }

        /* Grid pentru funcțiile de conducere */
        .conducere-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            justify-content: center;
            width: 70%;
            margin: auto;
        }

        /* Stilul pentru "Cartea de vizită" */
        .carte-vizita {
            background: #ffffff;
            padding: 40px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            border-top: 5px solid #3b82f6;
            /* Accent albastru sus */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-left: 1px solid #f1f5f9;
            border-right: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
        }

        .carte-vizita:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        }

        /* Iconița de deasupra numelui */
        .carte-vizita svg {
            width: 48px;
            height: 48px;
            fill: #94a3b8;
            /* Gri deschis */
            margin-bottom: 20px;
            transition: fill 0.3s ease;
        }

        .carte-vizita:hover svg {
            fill: #3b82f6;
            /* Se face albastră la hover */
        }

        /* Tipografie Nume și Funcție */
        .nume-conducere {
            font-size: 1.2rem;
            color: #1a365d;
            margin: 0 0 10px 0;
            font-weight: 800;
            text-transform: uppercase;
        }

        .functie-conducere {
            font-size: 1rem;
            color: #e53e3e;
            /* Accent roșu medical pentru funcție */
            font-weight: bold;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .lipsa-nume {
            color: #718096;
            font-style: italic;
            font-weight: normal;
            font-size: 0.95rem;
            text-transform: none;
        }

        /* Detalii de contact (pentru când le vei adăuga la loc) */
        .contact-detalii {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px dashed #cbd5e1;
            width: 100%;
            font-size: 0.95rem;
            color: #4a5568;
        }

        .contact-detalii a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: bold;
        }

        .contact-detalii a:hover {
            text-decoration: underline;
        }

        /* Setări generale pentru conținut */

        .page-title {
            text-align: center;
            font-weight: 700;
            margin: 5% 0 40px 0;
            color: #1a365d;
            /* Albastru instituțional */
            font-size: 2.2rem;
        }

        /* Container pentru lista de documente */
        .legislatie-lista {
            display: flex;
            flex-direction: column;
            gap: 15px;
            /* Spațiere între documente */
        }

        /* Cardul individual pentru fiecare document */
        .doc-card {
            display: flex;
            align-items: center;
            background: #ffffff;
            border-left: 5px solid #e53e3e;
            /* Roșu medical / PDF */
            border-top: 1px solid #f1f5f9;
            border-right: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            text-decoration: none;
            color: #333;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
        }

        /* Efect la trecerea cu mouse-ul */
        .doc-card:hover {
            transform: translateX(8px);
            /* Cardul glisează ușor la dreapta */
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            border-left-color: #3b82f6;
            /* Se transformă în albastru */
            text-decoration: none;
        }

        /* Iconița de PDF din stânga */
        .doc-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            margin-right: 20px;
            fill: #cbd5e1;
            /* Gri deschis */
            transition: fill 0.2s ease;
        }

        .doc-card:hover .doc-icon {
            fill: #3b82f6;
        }

        /* Textul din interiorul cardului */
        .doc-content {
            display: flex;
            flex-direction: column;
        }

        .doc-title {
            margin: 0 0 5px 0;
            font-size: 1.15rem;
            color: #1a365d;
            font-weight: bold;
        }

        .doc-desc {
            margin: 0;
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.5;
        }

        /* Pentru telefoane mobile */
        @media (max-width: 600px) {
            .doc-card {
                padding: 15px;
                flex-direction: column;
                /* Pune iconița deasupra textului pe ecrane foarte mici */
                align-items: flex-start;
            }

            .doc-icon {
                margin-bottom: 10px;
                width: 32px;
                height: 32px;
            }
        }

        /* Setări generale pentru conținut */

        .page-title {
            text-align: center;
            font-weight: 700;
            margin: 5% 0 40px 0;
            color: #1a365d;
            /* Albastru instituțional */
            font-size: 2.2rem;
        }

        /* Stil pentru secțiunea "În lucru" (Empty State) */
        .empty-state-card {
            background: #ffffff;
            border: 2px dashed #cbd5e1;
            /* Chenar punctat gri/albastru */
            border-radius: 12px;
            padding: 80px 20px;
            text-align: center;
            margin: 20px auto;
            max-width: 700px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        }

        .empty-state-icon {
            width: 72px;
            height: 72px;
            fill: #94a3b8;
            /* Gri deschis */
            margin-bottom: 25px;
            animation: pulse 3s infinite;
            /* O animație subtilă */
        }

        .empty-state-title {
            font-size: 1.6rem;
            color: #1a365d;
            font-weight: bold;
            margin: 0 0 10px 0;
        }

        .empty-state-desc {
            font-size: 1.1rem;
            color: #64748b;
            margin: 0;
            line-height: 1.5;
        }

        /* O mică animație pentru iconiță pentru a adăuga dinamism */
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }