        /* Resetare și stiluri generale */
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; }
        body { background-color: #f4f6f9; color: #333; line-height: 1.6; }

        /* Meniu Fix Sus */
        header { position: fixed; top: 0; left: 0; width: 100%; background: #1a252f; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
        .logo { color: #fff; font-size: 1.3rem; font-weight: bold; }
        .logo span { color: #3498db; }
        .nav-btn { background: #3498db; color: white; padding: 8px 38px; text-decoration: none; border-radius: 4px; font-weight: bold; transition: background 0.3s; margin : 0 auto; margin-right:70px; }
        .nav-btn:hover { background: #2980b9; } 

        /* Secțiunea Principală (Hero) - CORECTATĂ ACUM */
        .hero { padding: 180px 5% 80px 5%; text-align: center; background: linear-gradient(rgba(26, 37, 47, 0.95), rgba(26, 37, 47, 0.95)), url('diagnozamea1') no-repeat center center/cover; color: white; }
        .hero h1 { font-size: 2.8rem; margin-bottom: 15px; font-weight: 700; }
        .hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 30px auto; color: #bdc3c7; }
        .cta-btn { background: #e74c3c; color: white; padding: 14px 30px; text-decoration: none; font-size: 1.1rem; border-radius: 4px; font-weight: bold; transition: 0.3s; display: inline-block; }
        .cta-btn:hover { background: #c0392b; }

        /* Stiluri Comune pentru Secțiuni */
        .section-padding { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
        .section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; position: relative; color: #1a252f; }
        .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: #3498db; margin: 10px auto 0 auto; border-radius: 2px; }

        /* Secțiunea: Detalii Servicii */
        .services-detail-grid { display: flex; flex-direction: column; gap: 50px; }
        .service-row { display: flex; align-items: center; gap: 40px; background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
        .service-row.reverse { flex-direction: row-reverse; }
        .service-img-container { flex: 1; min-width: 300px; }
        .service-img-container img { width: 100%; height: 320px; object-fit: cover; border-radius: 6px; background: #ddd; }
        .service-text { flex: 1.2; }
        .service-text h3 { font-size: 1.6rem; color: #1a252f; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .service-text p { color: #555; margin-bottom: 15px; font-size: 1.05rem; text-align: justify; }
        .service-text ul { list-style-position: inside; margin-left: 5px; color: #444; }
        .service-text ul li { margin-bottom: 8px; }

        /* Secțiunea Portofoliu */
        .portfolio-bg { background-color: #eaedf2; }
        .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .portfolio-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s; }
        .portfolio-card:hover { transform: translateY(-5px); }
        .portfolio-img { width: 100%; height: 200px; object-fit: cover; background: #ddd; }
        .portfolio-info { padding: 20px; }
        .portfolio-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: #1a252f; }
        .portfolio-info p { font-size: 0.95rem; color: #666; }

        /* Subsol (Footer) */
        footer { background: #1a252f; color: #bdc3c7; text-align: center; padding: 20px; font-size: 0.9rem; }

        /* Optimizare ecrane mici (Telefoane) */
        @media (max-width: 768px) {
            .hero { padding: 140px 4% 60px 4%; }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1.1rem; }
            .service-row, .service-row.reverse { flex-direction: column; padding: 20px; }
            .service-img-container img { height: 220px; }
            header { padding: 15px 8%; }
			.nav-btn
			{
			position:absolute;
			top:80px;
			width:84%;
			text-align:center;
			}
        }