/* Styles spécifiques à la page Garanties */

.guarantees {
  padding: 80px 0;
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: var(--text-light);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.guarantee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
}

.guarantee-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--secondary-dark);
}

.guarantee-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.highlight-box {
  background: var(--bg-light);
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  border-left: 5px solid var(--primary);
}

.highlight-box h2 {
  font-size: 32px;
  color: var(--secondary-dark);
  margin-bottom: 20px;
}

.highlight-box p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 968px) {
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
}