body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Shared long-form content styles (Terms / Conditions / Policies, etc.) */
.conditions-content {
  color: #374151;
  /* gray-700 */
  font-size: 16px;
  line-height: 1.75;
}

/* Headings (smaller than previous) */
.conditions-content h2 {
  color: #111827;
  /* gray-900 */
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}

@media (min-width: 768px) {
  .conditions-content h2 {
    font-size: 24px;
  }
}
.conditions-content h3 {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  margin: 22px 0 10px;
}

@media (min-width: 768px) {
  .conditions-content h3 {
    font-size: 19px;
  }
}
/* Paragraphs + lists */
.conditions-content p {
  margin-top: 10px;
}

.conditions-content ul,
.conditions-content ol {
  margin: 14px 0;
  padding-left: 22px;
}

.conditions-content ul {
  list-style: disc;
}

.conditions-content ol {
  list-style: decimal;
}

.conditions-content li {
  margin: 6px 0;
}

/* Links + emphasis */
.conditions-content a {
  color: #4338ca;
  /* indigo-700 */
  text-decoration: underline;
  text-underline-offset: 3px;
}

.conditions-content a:hover {
  color: #312e81;
  /* indigo-900 */
}

.conditions-content strong {
  color: #111827;
  font-weight: 600;
}

/* Separators / extras */
.conditions-content hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  /* gray-200 */
  margin: 32px 0;
}

.conditions-content blockquote {
  margin: 18px 0;
  padding-left: 14px;
  border-left: 4px solid #e5e7eb;
  color: #4b5563;
  /* gray-600 */
}

.conditions-content code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #f3f4f6;
  /* gray-100 */
  color: #111827;
  font-size: 14px;
}

/* Landing-specific helpers extracted from the original draft */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.float-animation {
  animation: float 3s ease-in-out infinite;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer.open {
  max-height: 500px;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.rotate {
  transform: rotate(180deg);
}

.cv-validation,
.cv-validation * {
  box-sizing: border-box;
}

@keyframes cv-validation-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cv-validation .animate-fade-in-up {
  animation: cv-validation-fade-in-up 0.8s ease-out forwards;
}

.cv-validation .delay-100 {
  animation-delay: 0.1s;
  opacity: 0;
}

.cv-validation .delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
}

.cv-validation .delay-300 {
  animation-delay: 0.3s;
  opacity: 0;
}

.cv-validation .gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cv-validation .card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-validation .card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.cv-validation #logo-carousel {
  transition: transform 0.5s ease-in-out;
}