body {
    background-color: #ffffff;
    color: #000000;
}

.text-gradient {
    background: linear-gradient(135deg, #DC143C 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #DC143C 0%, #000000 100%);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional styles for terms and privacy pages */
.section-card {
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-2px);
}

.section-number {
    background: linear-gradient(135deg, #DC143C 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #5d5d5e2d;
}

::-webkit-scrollbar-thumb {
 background: linear-gradient(135deg, #DC143C 0%, #000000 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
 background: linear-gradient(135deg, #DC143C 0%, #000000 100%);
}
