/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: #b0b0b0;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

/* Desktop CTA Button */
.desktop-cta {
  display: inline-block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #d4ff00;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #000000;
  border-left: 1px solid rgba(212, 255, 0, 0.2);
  padding: 80px 40px 40px;
  transition: right 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #d4ff00;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.mobile-nav-link {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #d4ff00;
  padding-left: 10px;
}

.mobile-menu-cta {
  padding-top: 20px;
}

.mobile-menu-cta .btn-primary {
  width: 100%;
  text-align: center;
  padding: 16px 32px;
  font-size: 16px;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  background-color: #d4ff00;
  color: #000000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #c0e600;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 255, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(212, 255, 0, 0.1);
  border: 1px solid rgba(212, 255, 0, 0.3);
  color: #d4ff00;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}

.sparkle {
  font-size: 16px;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.highlight {
  color: #d4ff00;
}

.hero-description {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 100px;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #d4ff00;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #b0b0b0;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #b0b0b0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(212, 255, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  color: #d4ff00;
  margin-bottom: 24px;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.service-description {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  font-size: 14px;
  color: #b0b0b0;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: "•";
  color: #d4ff00;
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  padding: 120px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.about-card:hover {
  border-color: rgba(212, 255, 0, 0.3);
  transform: translateY(-5px);
}

.about-icon {
  color: #d4ff00;
  margin-bottom: 24px;
}

.about-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.about-card-description {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.7;
}

/* ==========================================
   FLAGSHIP PRODUCT SECTION
   ========================================== */
.flagship {
  padding: 80px 0;
}

.flagship-container {
  border: 2px solid #d4ff00;
  border-radius: 24px;
  padding: 60px;
  background-color: rgba(212, 255, 0, 0.02);
}

.flagship-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(212, 255, 0, 0.1);
  border: 1px solid rgba(212, 255, 0, 0.3);
  color: #d4ff00;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.flagship-badge svg {
  width: 16px;
  height: 16px;
}

.flagship-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.flagship-description {
  font-size: 18px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 900px;
}

.flagship-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.flagship-feature {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
}

.flagship-feature:hover {
  border-color: rgba(212, 255, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}

.flagship-feature-icon {
  color: #d4ff00;
  flex-shrink: 0;
}

.flagship-feature-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.flagship-feature-content p {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.7;
}

/* ==========================================
   TECHNOLOGY STACK SECTION
   ========================================== */
.tech-stack {
  padding: 100px 0;
  text-align: center;
}

.tech-stack .section-title {
  margin-bottom: 60px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-tag {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  border-color: rgba(212, 255, 0, 0.5);
  background-color: rgba(212, 255, 0, 0.1);
  color: #d4ff00;
}

/* ==========================================
   CASE STUDIES SECTION
   ========================================== */
.case-studies {
  padding: 120px 0;
}

.case-studies-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.case-study {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  transition: all 0.3s ease;
}

.case-study:hover {
  border-color: rgba(212, 255, 0, 0.3);
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.case-study-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 255, 0, 0.1);
  border: 1px solid rgba(212, 255, 0, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4ff00;
  flex-shrink: 0;
}

.case-study-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.case-study-client {
  font-size: 16px;
  color: #808080;
}

.case-study-section {
  margin-bottom: 40px;
}

.case-study-section:last-child {
  margin-bottom: 0;
}

.case-study-label {
  font-size: 12px;
  font-weight: 700;
  color: #d4ff00;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.case-study-text {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.7;
}

.case-study-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.result-card {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: rgba(212, 255, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.7);
}

.result-number {
  font-size: 42px;
  font-weight: 700;
  color: #d4ff00;
  margin-bottom: 8px;
}

.result-label {
  font-size: 14px;
  color: #b0b0b0;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #ffffff;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  padding: 120px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-card {
  max-width: 600px;
  margin: 0 auto 60px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.contact-email-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.email-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 255, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4ff00;
  flex-shrink: 0;
}

.email-label {
  font-size: 14px;
  color: #808080;
  margin-bottom: 4px;
}

.email-link {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #d4ff00;
}

.contact-expect {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.expect-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expect-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #b0b0b0;
}

.expect-list li svg {
  color: #d4ff00;
  flex-shrink: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: #808080;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-email-icon {
  color: #d4ff00;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-email-icon:hover {
  color: #c0e600;
  transform: scale(1.1);
}

.footer-email-icon svg {
  display: block;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column-title {
  font-size: 12px;
  font-weight: 700;
  color: #808080;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu li a {
  font-size: 15px;
  color: #b0b0b0;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #d4ff00;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #707070;
}

.footer-legal {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-legal a {
  color: #707070;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #d4ff00;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet & Below */
@media (max-width: 1024px) {
  .services-grid,
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .flagship-container {
    padding: 40px;
  }

  .case-study-results {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* Mobile & Below */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  .desktop-cta {
    display: none;
  }

  /* Show mobile menu header when menu is open */
  .mobile-menu.active .mobile-menu-header {
    display: flex;
  }

  /* Hero Section */
  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-title br {
    display: none;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-description br {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-bottom: 60px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .badge {
    font-size: 13px;
    padding: 6px 16px;
  }

  /* Stats */
  .stats {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
  }

  .stat-number {
    font-size: 48px;
  }

  /* Sections */
  .services,
  .about,
  .case-studies,
  .contact {
    padding: 80px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  /* Grids */
  .services-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .about-card {
    padding: 32px 24px;
  }

  /* Flagship Product */
  .flagship {
    padding: 60px 0;
  }

  .flagship-container {
    padding: 30px 20px;
  }

  .flagship-title {
    font-size: 28px;
  }

  .flagship-description {
    font-size: 16px;
  }

  .flagship-feature {
    flex-direction: column;
    padding: 24px;
  }

  /* Tech Stack */
  .tech-stack {
    padding: 80px 0;
  }

  .tech-tag {
    font-size: 13px;
    padding: 10px 20px;
  }

  /* Case Studies */
  .case-study {
    padding: 30px 20px;
  }

  .case-study-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .case-study-title {
    font-size: 24px;
  }

  .case-study-results {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-number {
    font-size: 36px;
  }

  /* CTA Section */
  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 32px;
  }

  /* Contact */
  .contact-card,
  .contact-expect {
    padding: 32px 24px;
  }

  .email-link {
    font-size: 18px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Legal Pages */
  .legal-page {
    padding: 120px 0 60px;
  }

  .legal-title {
    font-size: 36px;
  }

  .legal-section h2 {
    font-size: 24px;
  }

  .legal-section h3 {
    font-size: 20px;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 16px 0;
  }

  .logo a {
    font-size: 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 42px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 24px;
  }

  .mobile-menu {
    max-width: 100%;
    padding: 80px 24px 40px;
  }

  .mobile-nav-link {
    font-size: 20px;
    padding: 16px 0;
  }

  .legal-title {
    font-size: 28px;
  }

  .legal-section h2 {
    font-size: 22px;
  }
}

/* ==========================================
   LEGAL PAGES (Privacy Policy & Terms)
   ========================================== */
.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}

.legal-updated {
  font-size: 16px;
  color: #808080;
  text-align: center;
  margin-bottom: 60px;
  font-style: italic;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #d4ff00;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 255, 0, 0.2);
}

.legal-section h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-section p {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 20px 0;
  padding-left: 0;
}

.legal-section ul li {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.legal-section ul li::before {
  content: "•";
  color: #d4ff00;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}

.legal-section ul li strong {
  color: #ffffff;
  font-weight: 600;
}

.legal-link {
  color: #d4ff00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #c0e600;
}

.legal-back {
  margin-top: 60px;
  text-align: center;
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 60px;
  }

  .legal-title {
    font-size: 36px;
  }

  .legal-section h2 {
    font-size: 24px;
  }

  .legal-section h3 {
    font-size: 20px;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .legal-title {
    font-size: 28px;
  }

  .legal-section h2 {
    font-size: 22px;
  }
}
