/* Premium AI Job Platform */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0a0f14 0%, #1a2332 100%);
  color: #ffffff;
  overflow-x: hidden;
  font-feature-settings: 'kern' 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 20, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(10, 15, 20, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 600;
  color: #00d4aa;
  letter-spacing: -0.8px;
}

.logo-icon {
  flex-shrink: 0;
  font-size: 32px;
  line-height: 1;
}

.logo-text {
  color: #00d4aa;
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link:hover {
  color: #00d4aa;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4aa 0%, #00b894 100%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #e9edef;
  transition: all 0.3s ease;
}

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

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

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





@media (max-width: 768px) {
  .header-content {
    padding: 16px 4%;
  }

  .logo {
    font-size: 20px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 20, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 4%;
    gap: 20px;
    border-bottom: 1px solid rgba(37, 211, 102, 0.1);
  }

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

  .nav.mobile-open .nav-cta {
    align-self: flex-start;
    margin-top: 10px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 184, 148, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0a0f14 0%, #1a2332 100%);
  position: relative;
  padding: 120px 4% 60px;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  z-index: 2;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  max-width: 640px;
  text-align: center;
}

.free-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 32px;
  box-shadow:
    0 4px 16px rgba(0, 212, 170, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.hero p {
  font-size: clamp(18px, 4vw, 22px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  line-height: 1.6;
  font-weight: 400;
}

.highlight {
  color: #ffffff;
  font-weight: 700;
}

.hero-form {
  max-width: 580px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  background: rgba(233, 237, 239, 0.1);
  border-radius: 4px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

#job-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: #e9edef;
  font-size: 16px;
  outline: none;
}

#job-input::placeholder {
  color: rgba(233, 237, 239, 0.6);
}

.cta-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  background: #1ebe57;
}

/* Message Aremu Link */
.message-aremu-link {
  text-align: center;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.message-aremu-link a {
  color: #00d4aa;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: block;
}

.message-aremu-link a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.message-aremu-link:hover {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.5);
}

@media (max-width: 768px) {
  .message-aremu-link {
    padding: 10px 16px;
    margin-top: 16px;
  }

  .message-aremu-link a {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Phone Mockup */
.hero-phone {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.phone-mockup:hover {
  transform: rotate(0deg) scale(1.02);
}

.phone-frame {
  width: 320px;
  height: 640px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #333,
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0b141a;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.whatsapp-header {
  background: #2a3942;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-details .name {
  color: #e9edef;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 1px;
}

.contact-details .status {
  color: #8696a0;
  font-size: 11px;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-icon {
  color: #8696a0;
  cursor: pointer;
  transition: color 0.2s;
}

.header-icon:hover {
  color: #e9edef;
}

.chat-messages {
  padding: 6px 12px 12px;
  height: calc(100% - 56px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #0b141a;
}

.message {
  max-width: 80%;
  margin-bottom: 2px;
  display: flex;
  flex-direction: column;
}

.message.received {
  align-self: flex-start;
}

.message.sent {
  align-self: flex-end;
}

.message-text {
  padding: 5px 6px 6px 7px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 16px;
  word-wrap: break-word;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.message.received .message-text {
  background: #202c33;
  color: #e9edef;
  border-bottom-left-radius: 2px;
}

.message.received .message-text::before {
  content: '';
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-right-color: #202c33;
  border-left: 0;
  border-bottom: 0;
}

.message.sent .message-text {
  background: #005c4b;
  color: #e9edef;
  border-bottom-right-radius: 2px;
}

.message.sent .message-text::before {
  content: '';
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-left-color: #005c4b;
  border-right: 0;
  border-bottom: 0;
}

.message-time {
  font-size: 10px;
  color: #8696a0;
  margin-top: 1px;
  align-self: flex-end;
  margin-right: 3px;
}

.message.received .message-time {
  align-self: flex-start;
  margin-left: 4px;
  margin-right: 0;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #202c33;
  border-radius: 18px;
  max-width: 60px;
  align-self: flex-start;
  margin-top: 4px;
}

.typing-dot {
  width: 4px;
  height: 4px;
  background: #8696a0;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}



.wa-label {
  font-weight: 600;
}

@media (max-width: 600px) {
  .wa-label {
    display: none;
  }
}



/* Common Styles */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}

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

.section-header h2 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-header p {
  font-size: clamp(16px, 4vw, 20px);
  color: rgba(233, 237, 239, 0.7);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: rgba(37, 211, 102, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: rgba(233, 237, 239, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(233, 237, 239, 0.08);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #e9edef;
}

.feature-card p {
  color: rgba(233, 237, 239, 0.7);
  line-height: 1.5;
}

/* How it Works Section */
.how-it-works {
  padding: 100px 0;
  background: #0b141a;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-number {
  background: #25d366;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e9edef;
}

.step-content p {
  color: rgba(233, 237, 239, 0.7);
  line-height: 1.5;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: rgba(37, 211, 102, 0.02);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(233, 237, 239, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.1);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #25d366;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e9edef;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #25d366;
  margin-bottom: 24px;
}

.price span {
  font-size: 16px;
  color: rgba(233, 237, 239, 0.6);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.pricing-card li {
  padding: 8px 0;
  color: rgba(233, 237, 239, 0.8);
  border-bottom: 1px solid rgba(37, 211, 102, 0.1);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.pricing-btn.primary {
  background: #25d366;
  color: white;
}

.pricing-btn.primary:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

.pricing-btn.secondary {
  background: transparent;
  color: #25d366;
  border: 1px solid #25d366;
}

.pricing-btn.secondary:hover {
  background: #25d366;
  color: white;
}

.beta-note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(233, 237, 239, 0.6);
  font-style: italic;
  text-align: center;
}

.coming-soon {
  margin-top: 60px;
  text-align: center;
  padding: 40px 32px;
  background: rgba(233, 237, 239, 0.03);
  border: 1px solid rgba(37, 211, 102, 0.1);
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e9edef;
}

.coming-soon p {
  color: rgba(233, 237, 239, 0.7);
  line-height: 1.5;
}

/* Privacy Section */
.privacy {
  padding: 100px 0;
  background: rgba(0, 212, 170, 0.02);
}

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

.privacy-section {
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.privacy-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #00d4aa;
}

.privacy-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-section li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 24px;
}

.privacy-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4aa;
  font-weight: 600;
}

/* Privacy Page Specific Styles */
.privacy-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

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

.privacy-header h1 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 180px 4% 40px;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

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

  .phone-mockup {
    transform: none;
    width: 100%;
  }

  .phone-frame {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .phone-frame::before {
    display: none;
  }

  .phone-screen {
    background: #0b141a;
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .whatsapp-header {
    border-radius: 12px 12px 0 0;
    padding: 12px 16px;
  }

  .chat-messages {
    padding: 12px 16px 16px;
    height: auto;
    min-height: 320px;
    gap: 3px;
  }

  .message-text {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 10px 10px 12px;
  }

  .message-time {
    font-size: 11px;
    margin-top: 2px;
  }

  .avatar {
    width: 36px;
    height: 36px;
  }

  .contact-details .name {
    font-size: 15px;
  }

  .contact-details .status {
    font-size: 12px;
  }

  .header-icon {
    width: 18px;
    height: 18px;
  }

  .input-group {
    flex-direction: column;
  }

  .cta-btn {
    border-radius: 0 0 4px 4px;
    justify-content: center;
  }

  .features,
  .how-it-works,
  .pricing {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .pricing-grid {
    flex-direction: column;
    gap: 24px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .coming-soon {
    margin-top: 40px;
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 4% 40px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.8px;
  }

  .mobile-break {
    display: block;
    margin-bottom: 4px;
  }

  .hero p {
    font-size: clamp(16px, 4.5vw, 20px);
    margin-bottom: 12px;
  }

  .hero-tagline {
    font-size: clamp(22px, 6vw, 28px) !important;
  }

  #job-input {
    padding: 14px 16px;
    font-size: 14px;
  }

  .cta-btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  .features,
  .how-it-works,
  .pricing {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: clamp(24px, 6vw, 36px);
  }

  .feature-card,
  .pricing-card {
    padding: 24px 20px;
  }
}






/* Data Deletion Page Specific Styles */
.deletion-method {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.highlight-box {
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  color: white;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.highlight-box p {
  color: white;
  margin: 0;
}

.email-template {
  margin: 16px 0;
}

.code-block {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #00d4aa;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.timeline {
  margin: 24px 0;
}

.timeline-item {
  border-left: 3px solid #00d4aa;
  padding-left: 24px;
  margin-bottom: 24px;
  position: relative;
}

.timeline-item::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #00d4aa;
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 4px;
}

.timeline-item h4 {
  margin: 0 0 8px 0;
  color: #00d4aa;
  font-weight: 600;
}

.timeline-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Active nav link */
.nav-link.active {
  color: #00d4aa;
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Enhanced privacy section styles */
.privacy-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #00d4aa;
  margin-bottom: 12px;
  margin-top: 24px;
}

.privacy-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #00d4aa;
  margin-bottom: 8px;
}

.privacy-section ol {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.privacy-section ol li {
  counter-increment: item;
  padding-left: 24px;
  position: relative;
}

.privacy-section ol li::before {
  content: counter(item) ".";
  color: #00d4aa;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-section a {
  color: #00d4aa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Smooth animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}