
  body {
    margin: 0;
    background: #0d0d0d;
    color: #eaeaea;
    font-family: 'Inter', 'Poppins', sans-serif;
  }
  
  .about-container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
  }
  
  .hero-section {
    margin-bottom: 80px;
    text-align: left;
    background: #0d0d0d;
    padding: 0;
  }
  
  .hero-text {
    max-width: 700px;
    margin: auto;
  }
  
  .hero-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Inter', 'Courier New', monospace;
    line-height: 1.3;
  }
  
  .hero-text p {
    font-size: 15px;
    color: #bbbbbb;
    line-height: 1.9;
    margin-bottom: 16px;
  }
  
  .about-container h2 {
    font-size: 36px;
    color: #ffffff;
    font-family: 'Inter', monospace;
    font-weight: 700;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  
  .timeline {
    position: relative;
    margin: 50px 0;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #f5c542;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
  }
  
  .timeline-item.left {
    flex-direction: row-reverse;
  }
  
  .timeline-item.right {
    flex-direction: row;
  }
  
  .timeline-item .content {
    width: 44%;
    padding: 20px;
    border-radius: 10px;
  }
  
  .timeline-item.left .content {
    margin-left: 0;
    margin-right: auto;
  }
  
  .timeline-item.right .content {
    margin-right: 0;
    margin-left: auto;
  }
  
  .timeline-item .content h3 {
    font-size: 18px;
    font-family: 'Inter', monospace;
    font-weight: 600;
    color: #f5c542;
    margin-bottom: 10px;
  }
  
  .timeline-item .content p {
    font-size: 15px;
    color: #bbbbbb;
    line-height: 1.7;
  }
  
  .timeline-item .dot {
    width: 18px;
    height: 18px;
    background: #f5c542;
    border-radius: 50%;
    border: 3px solid #0d0d0d;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  
  .timeline-item .month {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    color: #f5c542;
    font-size: 14px;
  }
  
  .timeline-item.right .month {
    right: calc(50% + 30px);
  }
  
  .timeline-item.left .month {
    left: calc(50% + 30px);
  }
  
  .timeline-item.left .content {
    order: 1;
  }
  
  .timeline-item.right .content {
    order: 2;
  }
  
  .core-values {
    margin-top: 100px;
    text-align: center;
    font-family: 'Inter', 'Courier New', monospace;
    background-color: #0d0d0d;
  }
  
  .core-values h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .core-values .subtitle {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 50px;
    font-weight: 400;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
  }
  
  .value-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .value-item h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
  }
  
  .value-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .value-item p {
    font-size: 16px;
    color: #bbbbbb;
    line-height: 1.7;
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
  }
  
  /* 🔁 Mobile Styles */
  @media (max-width: 768px) {
    .about-container {
      padding: 60px 30px;
    }
  
    .hero-text h2, .about-container h2 {
      font-size: 26px;
    }
  
    .hero-text p {
      font-size: 15px;
    }
  
    .timeline::before {
      left: 0;
      width: 2px;
    }
  
    .timeline-item {
      flex-direction: column;
      align-items: flex-start;
      margin: 40px 0;
      margin-left: -15px;
    }
  
    .timeline-item .month {
      font-size: 15px;
    }
  
    .timeline-item.right .month {
      top: 10px;
      left: 30px;
    }
  
    .timeline-item.left .month {
      top: 10px;
      left: 30px;
    }
  
    .timeline-item .dot {
      width: 14px;
      height: 14px;
      left: 8.4px;
      top: 2px;
      transform: none;
      margin-bottom: 10px;
    }
  
    .timeline-item .content {
      width: 100%;
      margin-left: 40px;
    }
  
    .timeline-item.left .content,
    .timeline-item.right .content {
      margin-left: 40px;
    }
  
    .core-values h2 {
      font-size: 26px;
    }
  
    .value-item p {
      font-size: 18px;
    }
  }
  