			/* RESET PENTRU CONSISTENȚĂ VIZUALĂ */
			a {
				text-decoration: none; /* Elimină sublinierile implicite de pe toate link-urile */
				color: inherit;
				transition: color 0.2s;
			}

			/* Stil pentru link-urile din footer sau navigare la hover (opțional) */
			nav a:hover,
			footer a:hover {
				color: var(--orange);
			}
	
        :root {
            --blue-dark: #0056b3;       /* Albastru închis - profesional */
            --blue-light: #0077cc;      /* Albastru deschis - accent */
            --orange: #FF6B35;          /* Portocaliu energic - accent */
            --cream: #FFEFE8;           /* Portocaliu deschis - fundal */
            --dark: #222;               /* Text principal */
            --light: #f5f5f5;          /* Fundal secțiuni */
            --white: #fff;
			--primary: var(--blue-dark);
			--secondary: var(--orange); 
        }
        
        body {
            font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--light);
        } 
		
	/*tip de text chatgpt */	
	/*	body {
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
			line-height: 1.6;
			background-color: #f9f9f9;
			color: #333;
		} */

		
              
         /* Header premium */
       .hero {
            background: linear-gradient(135deg, var(--blue-dark) 0%, var(--orange) 95%);
            color: var(--white);
            padding: 2.35rem 1.5rem;
            text-align: center;
        }
        
        .header-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .logo {
            height: 140px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        
	/*	.logo:hover {
            transform: scale(1.05);
        } */
        
        .header-titles {
            display: inline-block;
            text-align: center;
            margin: 0 auto;
            padding: 0 50px; /* REDUS DE LA 100px PENTRU LĂȚIME */
        }
        
        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            color: var(--white);
        }
        
        .hero .subtitle {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 1.05rem;
            color: var(--cream);
            position: relative;
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            background-color: rgba(255, 107, 53, 0.02); /* Portocaliu transparent */
        }
        
		/*.hero .subtitle::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 60%;
            width: 3px;
            background: var(--secondary);
        } */
		
		/* Buton portocaliu pentru accent - UNIFORMIZAT */
        .btn-orange {
            background-color: var(--orange);
            color: white;
            padding: 1rem 2rem; /* MĂRIT */
            border-radius: 4px;
            display: inline-block;
            margin-top: 1rem;
            font-weight: 700; /* MĂRIT */
            font-size: 1.1rem; /* NOU */
            transition: all 0.25s ease;
            font-family: 'Poppins', sans-serif; /* ASIGURĂ FONT CORECT */
        }
        
        .btn-orange:hover {
            background-color: #e05a2b;
            transform: translateY(-2px);
        }
       
        /* Stiluri pentru alinierea textului */
        .content-block {
            text-align: justify;
            text-justify: inter-word;
            hyphens: auto;
            line-height: 1.6;
            word-spacing: -0.05em;
        }
		
		
	/* Navigație */
        nav {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.12);
            position: sticky;
            top: 0;
            z-index: 100;
        }
		nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 1rem;
			gap: 1rem;            
			margin:0;
            flex-wrap: wrap;
        }
		
	    nav ul li a {
            padding: 0.5rem 1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
        }
        nav ul li a:hover {
            background-color: var(--orange);
            color: var(--white);
        }
		
		/* Stil special pentru AI Launchpad */
        nav ul li a.nav-special {
            background-color: var(--secondary); /* Fundal Portocaliu */
            color: var(--white); /* Text Alb */
            border: 2px solid var(--secondary);
            font-weight: 700;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }

        nav ul li a.nav-special:hover {
            background-color: #e05a2b; /* Portocaliu mai închis la hover */
            color: var(--white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        /* Secțiuni principale */
        .container {
            max-width: 1000px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }
        section {
            margin-bottom: 3rem;
        }
         h2 {
            font-family: 'Poppins', sans-serif;
            color: var(--blue-dark);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--orange);
        }
        
        /* === NOU: Stiluri pentru Beneficii și Public === */
        .three-col-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .grid-item {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .grid-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .grid-item p {
            font-weight: 600;
            color: var(--dark);
        }
        /* Stil pentru iconițe mari */
        .grid-icon {
            font-size: 2rem;
            color: var(--orange);
            margin-bottom: 0.8rem;
            display: block;
        }
        /* === SFÂRȘIT NOU === */


        /* Servicii */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
		
        .service {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .service:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .service h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
		.service h3::before {
            content: '\f105'; /* Codul pentru iconița Font Awesome 'chevron-right' */
            font-family: 'Font Awesome 6 Free'; /* Specifică familia de fonturi */
            font-weight: 900; /* Asigură că se afișează solid */
            color: var(--secondary);
            font-size: 1rem;
        }
        
        /* Echipa */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .team-member {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        .team-member:hover {
            transform: scale(1.03);
        }
        .team-member img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--secondary);
            margin: 0 auto 1rem;
            display: block;
        }
        .team-member h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .social-links {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        .social-links a {
            color: var(--primary);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--secondary);
        }
        
        /* Formular contact */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        input, textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
		button {
            background-color: var(--primary);
            color: var(--white); /* CORECTAT: Din orange în white */
            border: none;
            padding: 1rem 2rem; /* MĂRIT */
            border-radius: 4px;
			cursor: pointer;
            font-weight: 700; /* MĂRIT */
            transition: background-color 0.3s;
            display: block;
            width: 100%;
            font-size: 1.1rem; /* MĂRIT */
        }

		/* Stil pentru butonul de trimitere (Contact) - NOU/CORECTAT */
		.contact-form button[type="submit"] {
			background-color: var(--primary); /* Albastru inchis */
			color: var(--white); /* Text Alb (standard pentru butoanele primare) */
			border: none;
			padding: 0.8rem 1.5rem;
			border-radius: 4px;
			cursor: pointer;
			font-weight: 600;
			transition: background-color 0.3s, transform 0.2s;
			display: block;
			width: 100%;
			font-size: 1rem;
		}

        .contact-form button[type="submit"]:hover {
            background-color: #004494; /* O nuanță mai închisă de albastru */
            transform: translateY(-1px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 2rem 1rem;
            text-align: center;
        }
        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-column p, .footer-column a {
            opacity: 0.8;
            margin-bottom: 0.5rem;
            display: block;
        }
        .footer-column a:hover {
            opacity: 1;
            color: var(--secondary);
        }
        .social-icons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1.5rem;
        }
        .social-icons a {
            font-size: 1.2rem;
            color: var(--white);
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: var(--secondary);
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }
        
        /* Responsivitate */
         @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            
            .hero .subtitle {
                padding-left: 0;
                padding-top: 1rem;
                margin-top: 1rem;
                border-top: 2px solid rgba(255,255,255,0.2);
            }
            
            .hero .subtitle::before {
                display: none;
            }
        }
		
		@media (max-width: 768px) {
            .logo {
                position: static;
                transform: none;
                margin-bottom: 1rem;
                display: block;
                margin-left: auto;
                margin-right: auto;
            }
            
            .header-titles {
                padding: 0;
                width: 100%;
            }
        }	

		@media (max-width: 768px) {
			.hero h1 {
				font-size: 2rem;
			}
		}	
		
		html {
			scroll-behavior: smooth;
			}
		
		 ul {
      list-style-type: none;
      padding-left: 0;
    }

    ul li {
      margin-bottom: 10px;
    }
	
	 details {
      margin-top: 10px;
    }
	
	blockquote {
      background: #fff;
      border-left: 4px solid var(--accent);
      padding: 10px 15px;
      margin: 20px 0;
      font-style: italic;
    }
	
	blockquote {
            /* Preluat și îmbunătățit stilul inline */
            border-left: 4px solid var(--orange);
            padding: 10px 15px;
            margin: 20px 0;
            font-style: italic;
			font-size: 1.1rem;
			background: var(--cream);
			color: var(--dark);
        }

    .cta-button {
      display: inline-block;
      padding: 12px 24px;
      margin-top: 20px;
      background-color: var(--accent);
      color: white;
      text-decoration: none;
      font-weight: bold;
      border-radius: 4px;
    }

    #contact a {
      color: var(--primary);
    }
	
	 @media (max-width: 600px) {
      header h1 {
        font-size: 1.5em;
      }

      .cta-button {
        width: 100%;
        text-align: center;
      }
    }
	
	nav {
    background: var(--white); 
    padding: 0.68rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	
	}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.menu a {
    color: var(--primary); /* albastru închis */
    text-decoration: none;
    padding: 0.4rem 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

.menu a:hover {
    background: var(--orange);
    color: white;
}

/* Buton hamburger (mobil) */
.hamburger {
    background: none;
    border: none;
    color: var(--primary); /* albastru închis */
    font-size: 1.5rem;
    cursor: pointer;
}

/* Ascunde butonul hamburger pe desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    color:  var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Stil pentru mobil */
@media (max-width: 768px) {
    /* Arată butonul hamburger */
    .hamburger {
        display: block;
    }
	

    /* Ascunde meniul inițial pe mobil */
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    /* Când meniul este "deschis" (clasa .active) */
    .menu.active {
        display: flex;
		align-items: center;
    }
}

/* Stiluri FAQ (Acordeon) */
#faq details {
    background: var(--white);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#faq summary {
    font-weight: 700;
    color: var(--blue-dark);
    cursor: pointer;
    padding: 0;
    list-style: none; /* Ascunde săgeata standard a browserului */
    position: relative;
}

/* Re-adaugă un indicator de deschidere/închidere */
#faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--orange);
    transition: transform 0.2s;
}

#faq details[open] summary::after {
    content: '–'; /* Schimbă la minus când este deschis */
    transform: rotate(0deg);
}

#faq details p {
    padding-left: 1.5rem; /* Mută padding-ul de la stilul inline aici */
    margin-top: 0.5rem;
    border-left: 3px solid var(--orange);
    padding-left: 1rem;
}