body {
  font-family: 'Noticia Text', serif;
  overflow-x: hidden;
}

h1, h2 {
   font-family: 'Noticia Text', serif;
}
/* Mobile-specific improvements */
    @media (max-width: 768px) {
      .hero-text {
        font-size: 1.8rem !important;
        line-height: 1.3;
      }
      
      .feature-tab {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        margin: 0.25rem;
      }
      
      .timeline-item {
        padding-left: 1.5rem !important;
      }
      
      .quote-box {
        padding: 1rem !important;
      }
    }
    
    /* Ensure images are responsive */
    .responsive-img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    
    /* Improved mobile touch targets */
    .mobile-button {
      min-height: 48px;
      min-width: 48px;
    }
/* Gradient definitions */
.gradient-purple {
  background: linear-gradient( #F0E8FF );
  position: relative;
}

.gradient-purple::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background: linear-gradient( #c0c0d0 0%, #c0c0d0 50%, #c0c0d0 100%);
  z-index: 1;
}

.gradient-grey {
background: linear-gradient(135deg, #E6E3F3 0%, #E6E3F3 50%, #E6E3F3 100%);
}

.gradient-dark {
background: linear-gradient(135deg, #E6E3F3 0%, #E6E3F3 50%, #E6E3F3 100%);
  position: relative;
}

/* Enhanced shadow and hover effects */
.card-shadow {
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.card-shadow:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(-5px);
}

/* Hero image fade effect */
.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

/* Dark fade for final section */
.final-section {
  position: relative;
}

/* Microphone section background images */
.microphone-section {
  background: url('../image/mobile.png') center/cover no-repeat;
  min-height: 800px;
  position: relative;
}

@media (min-width: 769px) {
  .microphone-section {
    background: url('../image/mircophone.jpg') center/cover no-repeat;
    min-height: 1100px;
  }
}

.final-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 80%, rgb(0 0 0 / 0%) 100%);
  z-index: 1;
}

/* Parallax effect */
.parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive images for story section */
#story img,
.final-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Footer link styling */
.footer-link {
  color: #F470B6;
  transition: all 0.3s ease;
}

.purple-bold {
color: #800080;
font-weight: 700;
}

.footer-link:hover {
  text-shadow: 0 0 8px rgba(240, 101, 180, 0.5);
}

/* Dark footer with fade */
.dark-footer {
  background: linear-gradient(to bottom, #000000 0%, #000000 50%, #000000 100%);
  position: relative;
}

.dark-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(42, 42, 58, 0) 0%, rgba(42, 42, 58, 1) 100%);
}

/* Text overlay for better visibility */
.text-overlay {
  background-color: #000000bf;
  padding: 1rem;
  position: relative;
  z-index:5555;
  border-radius: 0.5rem;
}

/* New layout styles */
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 232, 255, 0.9);
  backdrop-filter: blur(10px);
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #F470B6;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 1.5rem;
  width: 0.1rem;
  height: calc(100% + 1rem);
  background-color: #E6E3F3;
}

.timeline-item.last::after {
    content: '';
    position: absolute;
    left: 0.45rem;
    top: -1.5rem;
    width: 0.1rem;
    height: calc(100% + 1rem);
    background-color: #E6E3F3;
    z-index: -099;
}
/* Mobile-specific improvements */
@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
  
  .hero-text {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }
  
  .feature-tab {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    margin: 0.25rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem !important;
  }
  
  .quote-box {
    padding: 1rem !important;
  }
  
  .final-section {
    min-height: 800px !important;
    height: auto !important;
    background-size: cover !important;
  }
}

/* Improved mobile touch targets */
.mobile-button {
  min-height: 48px;
  min-width: 48px;
}

    .privacy-section {
      margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #800080;
    }
    
    .privacy-section h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #800080;
    }
    
    .privacy-section p {
      margin-bottom: 1rem;
      line-height: 1.6;
      font-size: 1.25rem;
    }
    ul, li{
      font-size: 1.25rem;
    }
    .privacy-content p{
         margin-bottom: 1rem;
      line-height: 1.6;
      font-size: 1.25rem;
    }
    .privacy-section ul {
      list-style-type: disc;
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .privacy-section li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }
    
    .contact-email {
      font-weight: 700;
      color: #800080;
    }

       .terms-container {
      padding: 2rem;
    }
    
    .terms-section {
      margin-bottom: 2rem;
    }
    
    .terms-section h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #800080;
    }
    
    .terms-section h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #800080;
    }
    
    .terms-section p {
      margin-bottom: 1rem;
      line-height: 1.6;
      font-size: 1.25rem;
    }
    .terms-content p{
         margin-bottom: 1rem;
      line-height: 1.6;
      font-size: 1.25rem;
    }
    .terms-section ul {
      list-style-type: disc;
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .terms-section li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }
    
    .terms-section ol {
      list-style-type: decimal;
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .contact-email {
      font-weight: 700;
      color: #800080;
    }