
@media (max-width: 768px) {
  header {
    display: none !important;
  }
}


        /* Stiluri pentru bannerul de deasupra footer-ului */
        .footer-banner {
            width: 100%;
            height: 120px;
            position: relative;
            overflow: hidden;
            background-image: url('imagini/pagini/2.jpg');
            background-repeat: repeat-x;
            background-size: auto -20%;
            margin-bottom: -140px;
        }
        
        /* Efectul de neon verde umbros */
        .footer-banner::after {
            content: "";
            position: absolute;
            bottom: -140px;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(100, 255, 100, 0.3);
            box-shadow: 
                0 0 5px rgba(100, 255, 100, 0.5),
                0 0 15px rgba(100, 255, 100, 0.3),
                0 0 30px rgba(100, 255, 100, 0.2);
            z-index: 1;
        }
        
        /* Ajustări pentru footer */
        footer {
            background: var(--darker-green);
            padding-top: 20px;
            position: relative;
            z-index: 2;
        }
        
        /* Animatie pentru banner (opțional) */
        @keyframes scrollBanner {
            0% { background-position: 0 0; }
            100% { background-position: 100% 0; }
        }
        
        /* Pentru a activa animatia, decomentează următoarele: */
        /*
        .footer-banner {
            animation: scrollBanner 30s linear infinite;
        }
        */
    

        :root {
            --dark-bg: #0a1a0f;
            --darker-green: #0c2a1a;
            --medium-green: #1e3b2a;
            --light-green: #2ecc71;
            --neon-green: #00ff88;
            --text-light: #e0f7e0;
            --text-muted: #a0b0a0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        main {
            flex: 1;
            padding: 40px 0;
        }
        
        /* Footer styling */
        footer {
            background-color: var(--darker-green);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            position: relative;
            z-index: 3;
            overflow: hidden;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 5;
        }
        
        /* Stâlpi decorative */
        .footer-pillar {
            position: absolute;
            top: 0;
            width: 60px;
            height: 100%;
            background: linear-gradient(to bottom, 
                rgba(30, 59, 42, 0.8) 0%, 
                rgba(12, 42, 26, 0.9) 40%, 
                rgba(12, 42, 26, 0.9) 60%, 
                rgba(30, 59, 42, 0.8) 100%);
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        }
        
        .footer-pillar.left {
            left: 0;
            border-right: 2px solid var(--light-green);
        }
        
        .footer-pillar.right {
            right: 0;
            border-left: 2px solid var(--light-green);
        }
        
        .pillar-ornament {
            width: 30px;
            height: 30px;
            background: radial-gradient(circle, var(--light-green) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.7;
        }
        
        .pillar-line {
            width: 4px;
            height: 40%;
            background: linear-gradient(to bottom, transparent, var(--neon-green), transparent);
            border-radius: 2px;
        }
        
        /* Newsletter styling */
        .newsletter {
            margin-bottom: 2rem;
            width: 100%;
            max-width: 500px;
            position: relative;
            z-index: 10;
        }
        
        .newsletter h3 {
            color: var(--light-green);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .newsletter p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 0.75rem 1rem;
            border-radius: 25px;
            border: none;
            background-color: var(--medium-green);
            color: var(--text-light);
            outline: none;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            box-shadow: 0 0 0 2px var(--neon-green);
            transform: translateY(-2px);
        }
        
        .newsletter-input::placeholder {
            color: var(--text-muted);
        }
        
        .newsletter-btn {
            background-color: var(--light-green);
            color: var(--dark-bg);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: var(--neon-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* Social media styling */
        .social-text {
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .social-icons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            justify-content: center;
        }
        
        .social-icons a {
            color: var(--text-light);
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--neon-green);
            transform: translateY(-3px);
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--light-green);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .footer-logo:hover {
            color: var(--neon-green);
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }
        
        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Stiluri pentru modul full screen pe mobil */
        @media (max-width: 768px) {
            body, html {
                width: 100%;
                overflow-x: hidden;
            }
            
            .container {
                width: 100%;
                padding: 15px;
            }
            
            footer {
                padding: 2rem 0;
                margin: 0;
                width: 100vw;
                position: relative;
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
            }
            
            .footer-pillar {
                width: 40px;
            }
            
            .pillar-ornament {
                width: 20px;
                height: 20px;
            }
            
            .newsletter {
                width: 90%;
                max-width: none;
                padding: 0 10px;
            }
            
            .newsletter-form {
                flex-direction: column;
                align-items: center;
            }
            
            .newsletter-input {
                min-width: unset;
                width: 100%;
                max-width: none;
                margin-bottom: 0.5rem;
            }
            
            .social-icons {
                gap: 1rem;
                flex-wrap: wrap;
            }
            
            .social-icons a {
                font-size: 1.8rem;
                margin: 5px;
            }
            
            .footer-content {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            footer {
                padding: 2rem 0 1rem;
            }
            
            .footer-pillar {
                width: 30px;
            }
            
            .newsletter h3 {
                font-size: 1.5rem;
            }
            
            .newsletter p {
                font-size: 0.95rem;
            }
            
            .newsletter-input {
                padding: 0.8rem 1rem;
                font-size: 1rem;
            }
            
            .newsletter-btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            
            .social-text {
                font-size: 1.1rem;
            }
            
            .footer-logo {
                font-size: 1.4rem;
            }
            
            .copyright {
                font-size: 0.85rem;
            }
        }

        /* Stiluri pentru orientarea landscape pe mobil */
        @media (max-width: 768px) and (orientation: landscape) {
            footer {
                padding: 1.5rem 0;
            }
            
            .newsletter {
                margin-bottom: 1.5rem;
            }
            
            .social-icons {
                margin-bottom: 1rem;
            }
            
            .newsletter-form {
                flex-direction: row;
            }
            
            .newsletter-input {
                margin-bottom: 0;
            }
        }
    


        :root {
            --dark-bg: #0a1a0f;
            --darker-green: #0c2a1a;
            --medium-green: #1e3b2a;
            --light-green: #2ecc71;
            --neon-green: #00ff88;
            --text-light: #e0f7e0;
            --text-muted: #a0b0a0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
       /* Imagini laterale */
.side-image {
    position: fixed;
    width: 300px; /* sau dimensiunea dorită */
    height: auto;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.side-image.left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.side-image.right {
    right: 0;
    top: 0%; /* Noua poziție verticală */
    transform: scaleX(-1); /* Doar oglindire, fără translate */
}

@media (max-width: 1200px) {
    .side-image {
        display: none;
    }
}

@media (max-width: 1200px) {
    .side-image {
        display: none; /* Ascunde pe ecrane mici */
    }
}
       
        /* Licurici */
        .firefly {
            position: fixed;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: var(--neon-green);
            box-shadow: 0 0 10px 2px var(--neon-green);
            opacity: 0.7;
            z-index: 1;
            pointer-events: none;
        }
        
        /* Elemente care trebuie peste licurici */
        header, .search-account, footer .footer-content {
            position: relative;
            z-index: 3;
            background-color: var(--darker-green);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        /* Header */
        /* Header */
.header {
    background-color: var(--darker-green);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 20, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 80%; /* Lățimea dorită */
    margin: 0 auto; /* Centrează orizontal */
    border-radius: 0 0 10px 10px; /* Opțional - pentru colțuri rotunjite */
    display: flex;
    justify-content: center; /* Centrează conținutul interior */
}
        :root {
  /* O nuanță mai organică pentru raze (nu neon) */
  --ray-green: #7befb3;
}

/* Ne asigurăm că pseudo-elementul poate ieși în afara antetului */
header, .mobile-header {
  overflow: visible;
  position: relative; /* important ca pseudo-elementul să fie poziționat corect */
}

/* Razele sub antet (desktop + mobil) */
header::after,
.mobile-header::after {
  content: '';
  position: absolute;
  left: 150px;
  width: 80vw; /* acum acoperă toată lățimea ecranului */

  /* înălțimea "benzii" de raze sub antet */
  height: 140px;
  /* poziționăm sub marginea de jos a antetului */
  bottom: -140px;

  pointer-events: none;
  z-index: 1; /* sub conținutul principal (care are z-index: 2), peste fundal */
  
  /* Strălucire difuză + evantai raze, cu opacități mici */
  background:
    radial-gradient(
      ellipse at 50% -10px,
      color-mix(in srgb, var(--ray-green) 28%, transparent) 0%,
      color-mix(in srgb, var(--ray-green) 14%, transparent) 35%,
      transparent 70%
    ),
    conic-gradient(
      from 180deg at 50% -20px,
      color-mix(in srgb, var(--ray-green) 15%, transparent) 0deg 2deg,
      transparent 2deg 12deg,
      color-mix(in srgb, var(--ray-green) 12%, transparent) 12deg 14deg,
      transparent 14deg 26deg,
      color-mix(in srgb, var(--ray-green) 10%, transparent) 26deg 28deg,
      transparent 28deg 40deg,
      color-mix(in srgb, var(--ray-green) 8%, transparent) 40deg 42deg,
      transparent 42deg 56deg
    );

  /* Tăiem razele cu o mască radială ca să se estompeze frumos în jos */
  -webkit-mask-image: radial-gradient(ellipse at 50% 0, black 0%, black 38%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 0, black 0%, black 38%, transparent 75%);

  filter: blur(2px);
}

/* Pe mobil, facem totul puțin mai compact și mai discret */
@media (max-width: 768px) {
  header::after,
  .mobile-header::after {
    height: 100px;
    bottom: -100px;
    filter: blur(1.5px);
    background:
      radial-gradient(
        ellipse at 50% -8px,
        color-mix(in srgb, var(--ray-green) 22%, transparent) 0%,
        color-mix(in srgb, var(--ray-green) 10%, transparent) 35%,
        transparent 70%
      ),
      conic-gradient(
        from 180deg at 50% -16px,
        color-mix(in srgb, var(--ray-green) 12%, transparent) 0deg 2deg,
        transparent 2deg 12deg,
        color-mix(in srgb, var(--ray-green) 9%, transparent) 12deg 14deg,
        transparent 14deg 26deg,
        color-mix(in srgb, var(--ray-green) 7%, transparent) 26deg 28deg,
        transparent 28deg 40deg
      );
  }
}
        .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* sau orice lățime maximă preferi */
    padding: 0 20px; /* padding lateral */
}

        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--light-green);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--light-green);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--light-green);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--light-green);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .search-account {
            display: flex;
            align-items: center;
        }
        
        .search-box {
            position: relative;
            margin-right: 1rem;
        }
        
        .search-box input {
            padding: 0.5rem 1rem 0.5rem 2.5rem;
            border-radius: 20px;
            border: none;
            background-color: var(--medium-green);
            color: var(--text-light);
            outline: none;
        }
        
        .search-box i {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }
        
        .account-btn {
            background-color: var(--light-green);
            color: var(--dark-bg);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .account-btn {
            background-color: var(--light-green);
            color: var(--dark-bg);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }
        
        .account-btn:hover {
            background-color: transparent;
            color: var(--neon-green);
            box-shadow: 0 0 20px var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green);
        }
        
        /* Stele diamant */
        .sparkle-star {
            position: absolute;
            width: 6px;
            height: 6px;
            background-color: var(--neon-green);
            transform: rotate(45deg);
            box-shadow: 0 0 10px var(--neon-green);
            opacity: 0;
            transition: transform 0.5s ease-out, opacity 0.5s ease-in-out;
            pointer-events: none;
        }
        
        .sparkle-star.large {
            width: 10px;
            height: 10px;
        }
        .mobile-header {
            display: none;
            background-color: var(--darker-green);
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 20, 0, 0.3);
        }
        
        .mobile-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--light-green);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .mobile-logo i {
            margin-right: 8px;
            color: var(--light-green);
        }
        
        .mobile-menu-btn {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-search-btn, .mobile-account-btn {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.2rem;
            margin-left: 15px;
            cursor: pointer;
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--darker-green);
            z-index: 1000;
            transition: left 0.3s ease;
            padding: 1rem;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--medium-green);
        }
        
        .mobile-nav-close {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav-list li {
            margin-bottom: 1rem;
        }
        
        .mobile-nav-list a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 0.5rem 0;
        }
        
        .mobile-nav-list a:hover {
            color: var(--light-green);
        }
        
        .mobile-search-container {
            display: none;
            padding: 1rem;
            background-color: var(--darker-green);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .mobile-search-container.active {
            display: block;
        }
        
        .mobile-search-box {
            display: flex;
            align-items: center;
        }
        
        .mobile-search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border-radius: 20px;
            border: none;
            background-color: var(--medium-green);
            color: var(--text-light);
            outline: none;
        }
        
        .mobile-search-close {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.2rem;
            margin-left: 10px;
            cursor: pointer;
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Ascundem header-ul desktop pe mobile */
        @media (max-width: 768px) {
            header {
                display: none;
            }
            
            .mobile-header {
                display: block;
            }
            
            .mobile-actions {
                display: flex;
                align-items: center;
            }
        }
        
        
        /* Articles Section */
        .articles-section {
            padding: 2rem 0;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--light-green);
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--light-green);
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .article-card {
            background-color: var(--darker-green);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }
        
        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0) 70%);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .article-card:hover::before {
            opacity: 1;
        }
        
        .article-card:active {
            transform: translateY(-5px) scale(0.98);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .article-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .article-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(10, 26, 15, 0.7), transparent 50%);
            z-index: 1;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-content {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .article-category {
            display: inline-block;
            background-color: var(--medium-green);
            color: var(--light-green);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 0.8rem;
            transition: all 0.3s;
        }
        
        .article-card:hover .article-category {
            background-color: var(--neon-green);
            color: var(--dark-bg);
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }
        
        .article-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: white;
            transition: color 0.3s;
        }
        
        .article-card:hover .article-title {
            color: var(--neon-green);
        }
        
        .article-excerpt {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--darker-green);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            position: relative;
            z-index: 3;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .social-icons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .social-icons a {
            color: var(--text-light);
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--neon-green);
            transform: translateY(-3px);
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--light-green);
            margin-bottom: 1rem;
            transition: all 0.3s;
        }
        
        .footer-logo:hover {
            color: var(--neon-green);
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }
        
        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .search-account {
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
        }
        /* Stiluri pentru bannerul de deasupra footer-ului */
        .footer-banner {
            width: 100%;
            height: 120px;
            position: relative;
            overflow: hidden;
            background-image: url('imagini/pagini/2.jpg');
            background-repeat: repeat-x;
            background-size: auto -20%;
            margin-bottom: -140px;
        }
        
        /* Efectul de neon verde umbros */
        .footer-banner::after {
            content: "";
            position: absolute;
            bottom: -140px;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(100, 255, 100, 0.3);
            box-shadow: 
                0 0 5px rgba(100, 255, 100, 0.5),
                0 0 15px rgba(100, 255, 100, 0.3),
                0 0 30px rgba(100, 255, 100, 0.2);
            z-index: 1;
        }
        
        /* Ajustări pentru footer */
        footer {
            background: var(--darker-green);
            padding-top: 20px;
            position: relative;
            z-index: 2;
        }
        
        /* Animatie pentru banner (opțional) */
        @keyframes scrollBanner {
            0% { background-position: 0 0; }
            100% { background-position: 100% 0; }
        }
        
        /* Pentru a activa animatia, decomentează următoarele: */
        /*
        .footer-banner {
            animation: scrollBanner 30s linear infinite;
        }
        */
