/* ========================
   Trust Section Styles
   ======================== */

.trust-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f6 0%, #fff5f3 100%);
  overflow: hidden;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

/* Trust Block Card */
.trust-block {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(205, 92, 92, 0.08);
  position: relative;
  border: 1px solid rgba(255, 192, 203, 0.2);
}

.trust-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(205, 92, 92, 0.12);
}

/* Icon Styling */
.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe4e1 0%, #ffd6d8 100%);
  border-radius: 50%;
  color: #c74860;
  transition: all 0.3s ease;
}

.trust-block:hover .trust-icon {
  background: linear-gradient(135deg, #ffcdd2 0%, #ffb3b9 100%);
  transform: scale(1.1);
}

.trust-icon svg {
  width: 30px;
  height: 30px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Headline */
.trust-headline {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 12px 0;
  letter-spacing: 0.3px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Supporting Text */
.trust-text {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Subtle Heart Accent */
.trust-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="rgba(205, 92, 92, 0.05)" stroke-width="1"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>') no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* ========================
   Responsive Design
   ======================== */

/* Tablet (768px and above) */
@media (max-width: 768px) {
  .trust-section {
    padding: 45px 15px;
  }

  .trust-container {
    gap: 25px;
  }

  .trust-block {
    padding: 30px 25px;
  }

  .trust-icon {
    width: 55px;
    height: 55px;
  }

  .trust-icon svg {
    width: 28px;
    height: 28px;
  }

  .trust-headline {
    font-size: 16px;
  }

  .trust-text {
    font-size: 13px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .trust-section {
    padding: 32px 12px;
  }

  .trust-container {
    gap: 16px;
  }

  .trust-block {
    padding: 18px 14px;
    border-radius: 12px;
    display:flex;
    gap:10px;
    align-items:flex-start;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
    flex-shrink:0;
    margin:0;
  }

  .trust-icon svg {
    width: 24px;
    height: 24px;
  }

  .trust-headline {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .trust-text {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .trust-accent {
    width: 110px;
    height: 110px;
    bottom: -36px;
    right: -36px;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  .trust-section {
    background: linear-gradient(135deg, #1a1512 0%, #2d1f1d 100%);
  }

  .trust-block {
    background: #2a2a2a;
    border-color: rgba(255, 192, 203, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .trust-block:hover {
    box-shadow: 0 8px 25px rgba(205, 92, 92, 0.2);
  }

  .trust-headline {
    color: #f5f5f5;
  }

  .trust-text {
    color: #b0b0b0;
  }

  .trust-accent {
    stroke: rgba(255, 192, 203, 0.08);
  }
}

/* ========================
   Horizontal Layout Variant
   (Uncomment to use instead of cards)
   ======================== */

/* 
.trust-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #ffe4e1 0%, #fff5f3 50%, #ffe4e1 100%);
  padding: 30px;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 100%;
}

.trust-block {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border: none;
  padding: 20px;
  box-shadow: none;
}

.trust-block:hover {
  transform: none;
  box-shadow: none;
}

.trust-icon {
  background: rgba(205, 92, 92, 0.1);
}
*/
