/* Guarantee Section Styles */
.guarantee-section {
  padding: 60px 0;
  background-color: var(--degrade-color);
}

.guarantee-section h2 {
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.guarantee-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.guarantee-image img {
  max-width: 400px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.guarantee-text {
  flex: 2;
}

.guarantee-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

/* Warning Section */
.warning-section {
  background-color: #fff9f9;
  padding: 40px 0;
  border-top: 1px solid #ffdddd;
  border-bottom: 1px solid #ffdddd;
}

.warning-section h2 {
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 700;
}

.warning-section p {
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badges img {
  height: 50px;
}