.container-stire {
            max-width: 1100px;
            margin: 60px auto 40px auto;
            padding: 20px;
            font-family: Arial, sans-serif;
            color: #333;
        }

        .stire-layout {
            display: flex;
            gap: 40px;
        }

        .coloana-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .titlu-stire { 
            color: #003366; 
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 2.2rem;
            line-height: 1.2;
        }

        .subtitlu-stire {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #555;
        }

        .coloana-galerie {
            flex: 0 0 450px; 
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .imagine-principala {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            cursor: pointer; 
            transition: opacity 0.3s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .miniaturi-container {
            display: flex;
            gap: 10px;
            justify-content: flex-start;
        }

        .miniaturi-container img {
            flex: 1; 
            height: 70px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s, transform 0.2s;
            border: 2px solid transparent;
            -webkit-tap-highlight-color: transparent;
        }

        .miniaturi-container img:hover,
        .miniaturi-container img.activa {
            opacity: 1;
            border-color: #003366;
            transform: translateY(-2px);
        }

        #imagine-modal {
            display: none;
            position: fixed;
            z-index: 99999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
        }
        #imagine-modal img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
            animation: zoomIn 0.3s ease;
            -webkit-tap-highlight-color: transparent;
        }
        @keyframes zoomIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        .btn-inchide {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        /* Recomandari */
        .recomandari-container {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            border-top: 1px solid #ddd;
            padding-top: 40px;
        }
        .col-stanga-recomandari { flex: 2; }
        .col-dreapta-recomandari { flex: 1; }
        .titlu-mic-sectiune {
            font-size: 1.1rem;
            color: #003366;
            margin-bottom: 20px;
            border-bottom: 2px solid #003366;
            display: inline-block;
            padding-bottom: 5px;
            text-transform: uppercase;
        }
        .wrapper-carduri { display: flex; gap: 20px; }
        .card-recomandare {
            flex: 1;
            border: 1px solid #eee;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
        }
        .card-recomandare:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .card-recomandare img { width: 100%; height: 140px; object-fit: cover; }
        .card-recomandare-continut { padding: 15px; flex-grow: 1; }
        .card-recomandare-titlu { font-size: 1rem; margin: 0 0 10px 0; color: #003366; line-height: 1.3; }
        .card-recomandare-sub { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.4; }

        @media (max-width: 768px) {
            .stire-layout {
                flex-direction: column;
                gap: 20px;
            }
            .coloana-galerie {
                flex: 1 1 auto;
                width: 100%;
            }
            .recomandari-container { flex-direction: column; }
            .wrapper-carduri { flex-direction: column; }
        }