.about-me {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: #f0f0f0;
    padding: 80px 20px;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
  }
  
  .about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .about-me h2 {
    text-align: center;
    font-size: 48px;
    color: #ff6600;
    margin-bottom: 50px;
    letter-spacing: 1.5px;
  }
  
  .about-text p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
  }
  
  .about-text .highlight {
    font-size: 30px;
    color: #ff6600;
    font-weight: 600;
    text-align: center;
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
  }
  
  .fade-in:nth-child(1) { animation-delay: 0.2s; }
  .fade-in:nth-child(2) { animation-delay: 0.4s; }
  .fade-in:nth-child(3) { animation-delay: 0.6s; }
  .fade-in:nth-child(4) { animation-delay: 0.8s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-me h2 {
      font-size: 36px;
    }
  
    .about-text p {
      font-size: 16px;
    }
  
    .about-text .highlight {
      font-size: 18px;
    }
  }
  