.elementor-15 .elementor-element.elementor-element-efaf17b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7eadf2d *//* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #ff5a72 0%, #ff8a9c 50%, #ffffff 100%);
  color: #333;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

/* Card Container */
.disclaimer-container {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(255, 90, 114, 0.4);
  text-align: left;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Title */
h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #ff3d5a;
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Sections */
.disclaimer-section {
  margin-bottom: 25px;
}

.disclaimer-section h2 {
  font-size: 1.5rem;
  color: #ff3d5a;
  margin-bottom: 12px;
  border-left: 6px solid #ff5a72;
  padding-left: 12px;
}

.disclaimer-section p,
.disclaimer-section li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}

.disclaimer-section ul {
  margin-left: 20px;
  padding-left: 10px;
  list-style: disc;
}

.disclaimer-section strong {
  color: #ff3d5a;
}

/* Footer */
.disclaimer-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}/* End custom CSS */