.elementor-5666 .elementor-element.elementor-element-aed4886{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5266f5e */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1f2937;
  line-height: 1.75;
}

/* CONTAINER */
.tou-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px;
}

/* HERO */
.tou-hero {
  background:
    radial-gradient(1200px 300px at top center, rgba(255,255,255,0.08), transparent),
    linear-gradient(135deg, #0f172a, #1f2937);
  color: #ffffff;
  text-align: center;
  padding: 110px 24px 90px;
  position: relative;
  overflow: hidden;
  animation: touFadeDown 0.9s ease;
}

.tou-hero h1 {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tou-hero p {
  margin-top: 14px;
  font-size: 16px;
  opacity: 0.85;
}

/* IMAGES */
.tou-images {
  background: #ffffff;
  padding-top: 40px;
}

.tou-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.tou-image-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.tou-image-grid img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

/* CONTENT */
.tou-content {
  animation: touFadeUp 0.9s ease;
}

/* CARD */
.tou-card {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-radius: 22px;
  padding: 38px;
  margin-bottom: 36px;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.06),
    0 1px 0 rgba(255,255,255,0.8) inset;
  position: relative;
}

.tou-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 4px;
  height: calc(100% - 44px);
  background: linear-gradient(180deg, #2563eb, #60a5fa);
  border-radius: 4px;
  opacity: 0.9;
}

.tou-card h2 {
  font-size: 22px;
  margin-bottom: 14px;
  padding-left: 14px;
  font-weight: 600;
}

.tou-card p,
.tou-card ul {
  padding-left: 14px;
}

.tou-card ul {
  padding-left: 34px;
}

.tou-card ul li {
  margin-bottom: 8px;
}

/* HIGHLIGHT CARD */
.tou-highlight {
  background: linear-gradient(180deg, #eef2ff, #ffffff);
}

.tou-highlight::before {
  background: linear-gradient(180deg, #4338ca, #6366f1);
}

/* ANIMATIONS */
@keyframes touFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes touFadeDown {
  from {
    opacity: 0;
    transform: translateY(-26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */