


.site-header {
  position: relative;
  width: 100%;
  background-color: white;
  text-align: center;
  padding: 20px 0;
  z-index: 10;
}

.logo {
  height: auto;
  width: auto;
  margin-top:-300px;
  max-height: 700px; /* logo vizibil, dar rezonabil */
  max-width: 100%;
  display: inline-block;
}

.slideshow {
  position: relative;
  margin-top: 180px; /* păstrat ca să nu se suprapună cu headerul */
  overflow: hidden;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.container.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px; /* mai mici decât 48px */
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;

  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 10;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.site-footer {
  background-color: #1f1f1f; /* gri foarte închis */
  padding: 40px 20px; /* mai mult padding pentru înălțime */
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  z-index: 1;
}

.footer-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #444;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.footer-button:hover {
  background-color: #666;
}

.footer-button.left {
  left: 400px;
}

.footer-button.right {
  right: 400px;
}





.services-section {
  max-width: 100%; /* întinde pe toată lățimea */
  padding: 80px 60px; /* spațiu mai generos sus/jos și lateral */
  text-align: center;
  font-family: Arial, sans-serif;
  background: #f9f9f9; /* opțional pentru contrast */
}

.services-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px; /* distanță mai mare între coloane */
  margin-top: 60px;
  text-align: left;
}

.service-column {
  flex: 1;
  min-width: 300px;
  max-width: 33%;
  padding: 20px;
  /* Eliminăm decorul vizual */
  background: none;
  box-shadow: none;
  border-radius: 0;
  transition: none;
}

.service-column:hover {
  transform: none; /* eliminăm efectul hover */
}

.service-column h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-column p {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

.service-column ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-column li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

.service-image {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin-top: 20px;
}


.success-stories {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.story-card {
  background: #fafafa;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.story-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.story-line {
  text-align: center;
  font-size: 18px;
  color: #888;
  margin: 10px 0 20px;
}

.story-card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}

.story-card p strong {
  color: #111;
}


@media (max-width: 768px) {
  .logo {
  width: 100%;
  margin-top: -100px; 
  display: flex;
  margin-left: auto;
  margin-right: auto;
}



  .services-section {
    padding: 40px 20px;
    text-align: center;
  }

  .services-columns {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .service-column {
    max-width: 100%;
    text-align: center;
  }

  .service-column ul {
    padding-left: 16px;
    text-align: left;
  }

  .service-image {
    max-height: 250px;
    width: 100%;
    object-fit: contain;
  }

  .success-stories {
    padding: 40px 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-card {
    padding: 20px;
    text-align: left;
  }

 .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 15px;
    text-align: center;
  }

  .footer-button {
    position: static;
    width: 80%;
    max-width: 250px;
    text-align: center;
    font-size: 16px;
    padding: 12px 0;
    background-color: #444;
    color: white;
    border-radius: 6px;
    margin-bottom: 10px;
  }

  .footer-button:hover {
    background-color: #666;
  }

  .footer-button.left,
  .footer-button.right {
    left: auto;
    right: auto;
    transform: none;
  }

  .footer-text {
    order: 3;
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
  }

  .menu-toggle {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 999;
  }
}
 
