.separator {
  width: 70%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.211);
  margin: 30px 0;
  border-radius: 2px;
}
.sectiune {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  margin: 20px auto;
  padding: 30px 40px;
  max-width: 1100px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sectiune .text {
  width: 65%;
  font-size: 13px; /* adăugat */
  line-height: 1.6;
}

.sectiune .text h3 {
  margin-top: 0;
}

.sectiune .text p {
  margin: 0 0 15px 0;
  text-align: justify;
}

.sectiune .text ul {
  margin-left: 25px;
  padding-left: 20px;
  list-style-type: disc;
}

.sectiune .imagine {
  width: 30%;
  text-align: right;
}

.sectiune .imagine img {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.sectiune .imagine img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
}

.close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.close {
  top: 30px;
  right: 45px;
  font-size: 35px;
  transform: none;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}
.sectiune-eficienta {
  display: flex;
  align-items: center; /* aliniază vertical imaginea cu jumătatea textului */
  margin: 40px auto;
  max-width: 1100px;
  padding: 20px;
  background-color: #f9f9f9;
}

.sectiune-eficienta img {
  width: 40%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.sectiune-eficienta img:hover {
  transform: scale(1.05);
}

.sectiune-eficienta .text {
  width: 60%;
  padding-left: 40px;
  text-align: justify;
  font-size: 12px;
  line-height: 1.6;
  color: #444; /* gri mai deschis decât negrul pur */
}

.sectiune-eficienta .text h3 {
  margin-bottom: 15px;
  font-size: 15px;
  color: #222; /* titlul un pic mai închis ca să iasă în evidență */
}
.sectiune-eficienta a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.sectiune-eficienta a:hover {
  text-decoration: underline;
}
.sectiune-energie {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 1100px;
  margin: 40px auto;
}

.sectiune-energie .content-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sectiune-energie .text {
  flex: 1;
  min-width: 300px;
  font-size: 12px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.sectiune-energie .text h3 {
  margin-bottom: 15px;
  font-size: 15px;
  color: #222;
}

.sectiune-energie .text p {
  margin-bottom: 15px;
}

.sectiune-energie .text a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.sectiune-energie .text a:hover {
  text-decoration: underline;
}

/* Slider specific pentru energie */
.slider-container-energie {
  position: relative;
  width: 25%;
  max-width: 350px;
  padding-top: 80px;
}

.slider-container-energie .slider-energie {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-container-energie .slider-img-energie {
  width: 100%;
  cursor: pointer;
  display: none;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.slider-container-energie .slider-img-energie.active {
  display: block;
}

.slider-container-energie .slider-img-energie:hover {
  transform: scale(1.05);
}

.slider-container-energie .prev-energie,
.slider-container-energie .next-energie {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 8px;
  color: #333;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.slider-container-energie .prev-energie:hover,
.slider-container-energie .next-energie:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.slider-container-energie .prev-energie {
  left: 10px;
}

.slider-container-energie .next-energie {
  right: 10px;
}

/* Aici am corectat clasa pentru dots - nu era .dots-energie în CSS, iar în HTML erau dot-energie */
.slider-container-energie .dots-energie {
  text-align: center;
  margin-top: 10px;
  display: flex;       /* face dot-urile să stea în linie */
  justify-content: center;
  gap: 8px;            /* spațiere între dot-uri */
}

.slider-container-energie .dot-energie {
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.slider-container-energie .dot-energie.active {
  background-color: #333;
}

.sectiune-ieas {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 1100px;
  margin: 40px auto;
}

.sectiune-ieas .content-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sectiune-ieas .text {
  flex: 1;
  min-width: 300px;
  font-size: 12px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.sectiune-ieas .text h3 {
  margin-bottom: 15px;
  font-size: 15px;
  color: #222;
}

.sectiune-ieas .text p {
  margin-bottom: 15px;
}

.sectiune-ieas .text a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.sectiune-ieas .text a:hover {
  text-decoration: underline;
}

/* Slider IEAS */
.slider-container-ieas {
  position: relative;
  width: 24%;
  max-width: 350px;
  padding-top: 30px;
}

.slider-container-ieas .slider-ieas {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-container-ieas .slider-img-ieas {
  width: 100%;
  cursor: pointer;
  display: none;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.slider-container-ieas .slider-img-ieas.active {
  display: block;
}

.slider-container-ieas .slider-img-ieas:hover {
  transform: scale(1.05);
}

.slider-container-ieas .prev-ieas,
.slider-container-ieas .next-ieas {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 8px;
  color: #333;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.slider-container-ieas .prev-ieas:hover,
.slider-container-ieas .next-ieas:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.slider-container-ieas .prev-ieas {
  left: 10px;
}

.slider-container-ieas .next-ieas {
  right: 10px;
}

.slider-container-ieas .dots-ieas {
  text-align: center;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-container-ieas .dot-ieas {
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.slider-container-ieas .dot-ieas.active {
  background-color: #333;
}
.sectiune-locul1 {
  display: flex;
  align-items: center;
  margin: 40px auto;
  max-width: 1100px;
  padding: 20px;
  background-color: #f9f9f9;
}

.sectiune-locul1 img {
  width: 40%;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 10px; /* colțuri rotunjite dacă vrei și aici */
}

.sectiune-locul1 img:hover {
  transform: scale(1.05);
}

.sectiune-locul1 .text {
  width: 60%;
  padding-right: 40px;
  text-align: justify;
  font-size: 12px;
  line-height: 1.6;
  color: #444;
}

.sectiune-locul1 .text h3 {
  margin-bottom: 15px;
  font-size: 15px;
  color: #222;
}

.sectiune-locul1 a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.sectiune-locul1 a:hover {
  text-decoration: underline;
}
.sectiune-ieas1 { 
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 1100px;
  margin: 40px auto;
}

.sectiune-ieas1 .content-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sectiune-ieas1 .text {
  flex: 1;
  min-width: 300px;
  font-size: 12px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.sectiune-ieas1 .text h3 {
  margin-bottom: 15px;
  font-size: 15px;
  color: #222;
}

.sectiune-ieas1 .text p {
  margin-bottom: 15px;
}

.sectiune-ieas1 .text a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.sectiune-ieas1 .text a:hover {
  text-decoration: underline;
}

/* Slider IEAS */
.slider-container-ieas1 {
  position: relative;
  width: 24%;
  max-width: 350px;
  padding-top: 30px;
}

.slider-container-ieas1 .slider-ieas1 {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-container-ieas1 .slider-img-ieas1 {
  width: 100%;
  cursor: pointer;
  display: none;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.slider-container-ieas1 .slider-img-ieas1.active {
  display: block;
}

.slider-container-ieas1 .slider-img-ieas1:hover {
  transform: scale(1.05);
}

.slider-container-ieas1 .prev-ieas1,
.slider-container-ieas1 .next-ieas1 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 8px;
  color: #333;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.slider-container-ieas1 .prev-ieas1:hover,
.slider-container-ieas1 .next-ieas1:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.slider-container-ieas1 .prev-ieas1 {
  left: 10px;
}

.slider-container-ieas1 .next-ieas1 {
  right: 10px;
}

.slider-container-ieas1 .dots-ieas1 {
  text-align: center;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-container-ieas1 .dot-ieas1 {
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.slider-container-ieas1 .dot-ieas1.active {
  background-color: #333;
}
.sectiune-plovdiv {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  margin: 40px auto;
}

.sectiune-plovdiv .content-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sectiune-plovdiv .text {
  flex: 1;
  min-width: 300px;
  font-size: 12px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.sectiune-plovdiv .text h3 {
  margin-bottom: 15px;
  font-size: 15px;
  color: #222;
}

.sectiune-plovdiv .text p {
  margin-bottom: 15px;
}

.sectiune-plovdiv .text a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.sectiune-plovdiv .text a:hover {
  text-decoration: underline;
}

/* Slider */
.slider-container-plovdiv {
  position: relative;
  width: 24%;
  max-width: 350px;
  padding-top: 30px;
}

.slider-container-plovdiv .slider-plovdiv {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-container-plovdiv .slider-img-plovdiv {
  width: 100%;
  cursor: pointer;
  display: none;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.slider-container-plovdiv .slider-img-plovdiv.active {
  display: block;
}

.slider-container-plovdiv .slider-img-plovdiv:hover {
  transform: scale(1.05);
}

.slider-container-plovdiv .prev-plovdiv,
.slider-container-plovdiv .next-plovdiv {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 8px;
  color: #333;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translateY(-50%);
  user-select: none;
}

.slider-container-plovdiv .prev-plovdiv:hover,
.slider-container-plovdiv .next-plovdiv:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.slider-container-plovdiv .prev-plovdiv {
  left: 10px;
}

.slider-container-plovdiv .next-plovdiv {
  right: 10px;
}

.slider-container-plovdiv .dots-plovdiv {
  text-align: center;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-container-plovdiv .dot-plovdiv {
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.slider-container-plovdiv .dot-plovdiv.active {
  background-color: #333;
}
.sectiune-moldenergy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto;
  max-width: 1100px;
  padding: 20px;
  background-color: #f9f9f9;
  gap: 20px;
}

.sectiune-moldenergy .videos {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sectiune-moldenergy .videos img {
  width: 100%;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.sectiune-moldenergy .videos img:hover {
  transform: scale(1.05);
}

.sectiune-moldenergy .text {
  width: 45%;
  text-align: justify;
  font-size: 12px;
  line-height: 1.6;
  color: #444;
}

.sectiune-moldenergy .text h3 {
  margin-bottom: 15px;
  font-size: 15px;
  color: #222;
}

.sectiune-moldenergy a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.sectiune-moldenergy a:hover {
  text-decoration: underline;
}

.sectiune-moldenergy .imagine img {
  width: 95%;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.sectiune-moldenergy .imagine img:hover {
  transform: scale(1.05);
}
 .videos {
    display: flex;
    gap: 60px; /* mai mult spațiu între videouri */
    
  }

  .video-thumbnail {
    position: relative;
    width: 250px;   /* mărime puțin mai mare */
    height: 140px;  /* proporție 16:9 */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }

  .video-thumbnail:hover {
    transform: scale(1.03);
  }

  .video-thumbnail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background: url('noutati/imgplay.png') no-repeat center center;
  background-size: 64px 64px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}