* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #f9f9f9;
    color: #333;
  }
  
  .about-section {
    background: #4a90e2;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .logo-container {
    margin-bottom: 20px;
  }
  
  .logo-container img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
  }
  
  .about-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards 0.5s;
  }
  
  .about-section p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards 0.8s;
  }
  
  .about-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
  }
  
  .content-container {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
  }
  
  .content-container:nth-child(odd) {
    animation-delay: 0.2s;
  }
  
  .content-container h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 15px;
  }
  
  .content-container p, .content-container ul {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .content-container ul {
    padding-left: 20px;
  }
  
  .contact-info {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #4a90e2;
  }
  
  .contact-info p {
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-info strong {
    color: #4a90e2;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .logo-container img {
      max-height: 120px;
    }
    
    .about-section h1 {
      font-size: 2rem;
    }
    
    .about-section p {
      font-size: 1rem;
    }
    
    .content-container h2 {
      font-size: 1.5rem;
    }
    
    .content-container p, 
    .content-container ul {
      font-size: 0.9rem;
    }
    
    .contact-info {
      padding: 15px;
    }
  }
  
  @media (max-width: 576px) {
    .logo-container img {
      max-height: 100px;
    }
    
    .about-section {
      padding: 60px 15px;
    }
    
    .about-section h1 {
      font-size: 1.8rem;
    }
    
    .about-content {
      margin: 30px auto;
      padding: 15px;
    }
    
    .content-container {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 420px) {
    .logo-container img {
      max-height: 80px;
    }
    
    .about-section h1 {
      font-size: 1.5rem;
    }
    
    .content-container h2 {
      font-size: 1.3rem;
    }
  }
  