:root {
  --primary: #ff6b35;
  --primary-dark: #e85d2f;
  --secondary: #004e89;
  --accent: #ffd23f;
  --text-dark: #1a1d29;
  --text-light: #f7f9fc;
  --bg-light: #f7f9fc;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
  --gradient-2: linear-gradient(135deg, #004e89 0%, #0066b2 100%);
  --gradient-3: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.train-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.1;
  animation: moveLine 20s linear infinite;
}

.train-line.line-1 {
  top: 20%;
  width: 100%;
  animation-delay: 0s;
}

.train-line.line-2 {
  top: 50%;
  width: 80%;
  animation-delay: 7s;
}

.train-line.line-3 {
  top: 80%;
  width: 60%;
  animation-delay: 14s;
}

@keyframes moveLine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 1rem 5%;
  box-shadow: var(--shadow-md);
}

.logo {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.logo i {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.download-btn)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition);
}

.nav-links a:not(.download-btn):hover::after {
  width: 100%;
}

.download-btn {
  background: var(--gradient-1);
  color: var(--white) !important;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}

.download-btn::after {
  display: none;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem 5%;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.download-btn-mobile {
  background: var(--gradient-1);
  color: var(--white) !important;
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 5% 80px;
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f1f8 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #5a6c7d;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.8rem;
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  box-shadow: var(--shadow-md);
}

.store-btn.primary {
  background: var(--text-dark);
  color: var(--white);
}

.store-btn.secondary {
  background: var(--white);
  color: var(--text-dark);
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.store-btn i {
  font-size: 1.8rem;
}

.store-btn small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-btn strong {
  font-size: 1rem;
}

/* Hero Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mockup {
  width: 360px;
  height: 780px;
  background: var(--text-dark);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
  position: relative;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.app-interface {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.app-header {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #999;
  font-size: 0.9rem;
}

.search-bar i {
  color: var(--primary);
}

.route-display {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.station {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.station-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-1);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.station span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.route-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 16px;
  position: relative;
}

.train-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  animation: trainMove 3s ease-in-out infinite;
}

@keyframes trainMove {

  0%,
  100% {
    left: 20%;
  }

  50% {
    left: 80%;
  }
}

.train-icon i {
  color: var(--primary);
  font-size: 0.9rem;
}

.seat-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.seat-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.seat-info i {
  color: var(--secondary);
}

.seat-badge {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.seat-badge.available {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

/* Floating Elements */
.float-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 1.5rem;
  color: var(--primary);
}

.float-1 {
  top: 15%;
  right: 10%;
  animation: float 4s ease-in-out infinite;
}

.float-2 {
  bottom: 30%;
  right: 5%;
  animation: float 5s ease-in-out infinite 1s;
}

.float-3 {
  top: 50%;
  right: 15%;
  animation: float 6s ease-in-out infinite 2s;
}

/* Features Section */
.features {
  padding: 100px 5%;
  background: var(--white);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.2rem;
  color: #5a6c7d;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 24px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}

.feature-card[data-aos="fade-up"] {
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card[data-delay="0"] {
  animation-delay: 0s;
}

.feature-card[data-delay="100"] {
  animation-delay: 0.1s;
}

.feature-card[data-delay="200"] {
  animation-delay: 0.2s;
}

.feature-card[data-delay="300"] {
  animation-delay: 0.3s;
}

.feature-card[data-delay="400"] {
  animation-delay: 0.4s;
}

.feature-card[data-delay="500"] {
  animation-delay: 0.5s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  background: var(--gradient-1);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.feature-icon .icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: inherit;
  filter: blur(10px);
  opacity: 0.5;
}

.feature-icon i {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.feature-card:hover .feature-link {
  gap: 12px;
}

.feature-link i {
  font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f1f8 100%);
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
}

.step[data-aos="fade-right"],
.step[data-aos="fade-left"] {
  animation: fadeInUp 0.8s ease-out forwards;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-family: "Space Mono", monospace;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.step-content p {
  color: #5a6c7d;
  line-height: 1.7;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* CTA Section */
.cta-section {
  padding: 100px 5%;
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="%23FF6B35" opacity="0.1"/></svg>');
  opacity: 0.5;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-1);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

/* Footer */
footer {
  background: #0d1117;
  color: var(--white);
  padding: 60px 5% 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-logo {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo i {
  color: var(--primary);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-download-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-download-btn i {
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .float-element {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 5% 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-btns {
    justify-content: center;
  }

  .mockup {
    width: 300px;
    height: 650px;
    margin-top: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-icon {
    margin: 0 auto;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .store-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .mockup {
    width: 260px;
    height: 560px;
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Policy Pages Styles */
.policy-section {
  min-height: 100vh;
  padding: 120px 5% 80px;
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f1f8 100%);
  position: relative;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.policy-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--bg-light);
}

.policy-header h1 {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.95rem;
  color: #5a6c7d;
}

.disclaimer-banner {
  background: linear-gradient(135deg,
      rgba(255, 107, 53, 0.1) 0%,
      rgba(255, 210, 63, 0.1) 100%);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-banner i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.disclaimer-banner.warning {
  background: linear-gradient(135deg,
      rgba(220, 53, 69, 0.1) 0%,
      rgba(255, 193, 7, 0.1) 100%);
  border-color: #dc3545;
}

.disclaimer-banner.warning i {
  color: #dc3545;
}

.disclaimer-banner strong {
  color: var(--text-dark);
}

.disclaimer-banner div {
  flex: 1;
  line-height: 1.7;
  color: #5a6c7d;
}

.policy-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-light);
}

.policy-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-content ul li,
.policy-content ol li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.policy-content a:hover {
  text-decoration: underline;
}

.highlight-box {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary);
}

.highlight-box.critical {
  border-left-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

.highlight-box.warning {
  border-left-color: #ffc107;
  background: rgba(255, 193, 7, 0.05);
}

.highlight-box p {
  margin-bottom: 0.5rem;
}

.highlight-box ul {
  margin-bottom: 0;
}

.contact-box {
  background: var(--gradient-1);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.contact-box p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.contact-box a {
  color: var(--white) !important;
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.contact-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #5a6c7d;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-link:hover {
  gap: 12px;
}

/* FAQ Section */
.faq-section {
  margin-top: 3rem;
}

.faq-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-item h4 i {
  color: var(--primary);
  margin-top: 2px;
}

.faq-item p {
  color: #5a6c7d;
  line-height: 1.7;
  padding-left: 28px;
  margin: 0;
}

.faq-item a {
  color: var(--primary);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Disclaimer text in footer */
.disclaimer-text {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 0.5rem;
}

/* Footer email link styling */
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-section a i {
  margin-right: 8px;
}

/* Responsive adjustments for policy pages */
@media (max-width: 768px) {
  .policy-container {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .disclaimer-banner {
    flex-direction: column;
    text-align: center;
  }

  .disclaimer-banner i {
    margin-top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}