/* Reset stiluri implicite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Header */
  .header {
    background-color: #000000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff3131;
  }

  
/* Stil general pentru secțiune */
.maintenance-section {
  background-color: #fff;
  color: #111;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.maintenance-section h2 {
  text-align: center;
  color: #e60000;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
  gap: 2rem;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 50%;
  padding: 1rem;
}

.text-block h3 {
  font-size: 1.6rem;
  color: #e60000;
  margin-bottom: 1rem;
}

.text-block p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.media-block {
  flex: 1 1 50%;
}

.media-block img,
.media-block video {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsivitate */
@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }
}





/* BUTON CONTACT */
.contact-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.contact-button {
  background-color: #e60000;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 10px rgba(230, 0, 0, 0.4);
}

.contact-button:hover {
  background-color: #000000;
  transform: scale(1.05);
}



  
  /* Contact Section */
  .contact-section {
    background-color: #ff3131;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
  }
  
  /* Footer */
  .footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
  }