.garantie-section {
  background-color: #f2f6fd;
  padding: 80px 20px;
}

.garantie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center; /* ✅ Centrare pe orizontală */
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center; /* ✅ Centrare text default */
}


.garantie-left {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}
.garantie-left img {
  max-width: 100%;
  width: 280px;
  height: auto;
}

.garantie-right {
  flex: 1 1 500px;
  max-width: 600px;
  color: #1a1a1a;
  text-align: center; /* ✅ Centrare text explicit */
  margin-bottom: 0;
  padding-bottom: 0;
}

.garantie-right .subtitle {
  font-weight: 600;
  color: #444;
  font-size: 16px;
  margin-bottom: 12px;
}

.garantie-right h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #1f1f1f;
}

.garantie-btn {
  display: inline-block;
  background-color: #620000;
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.garantie-btn:hover {
  background-color: #620000;
}

/* Responsive */
@media (max-width: 768px) {
  .garantie-left {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
  }

  .garantie-left img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .garantie-right {
    flex: unset;
    width: 100%;
    padding: 0 20px;
  }

  .garantie-right h2 {
    font-size: 22px;
  }

  .garantie-btn {
    font-size: 15px;
    padding: 10px 18px;
  }
}

