/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
  }
  
  header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin: 0;
  }
  
  header h1 span {
    color: #f7e018;
  }
  
  header nav {
    margin-top: 10px;
  }
  
  header .back-button {
    text-decoration: none;
    color: #f7e018;
    font-size: 1.2rem;
    padding: 10px 15px;
    border: 2px solid #f7e018;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  header .back-button:hover {
    background-color: #f7e018;
    color: #121212;
  }
  
  /* About Section */
  .about-sensetings {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  
  .about-sensetings h2 {
    font-size: 2rem;
    color: #01c2ff;
    text-shadow: 0 0 5px #5693d3;
  }
  
  /* Timeline Section */
  .timeline-section {
    max-width: 800px;
    margin: 40px auto;
  }
  
  .timeline-section h2 {
    text-align: center;
    color: #d5d5d5;
    text-shadow: 0 0 5px #c1c1c1;
  }
  
  .timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 40px;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #01c2ff;
    border-radius: 2px;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  
  .timeline-dot {
    position: absolute;
    left: 12px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #f7e018;
    border: 4px solid #6a11cb;
    border-radius: 50%;
    box-shadow: 0 0 10px #f7e018;
  }
  
  .timeline-content {
    margin-left: 40px;
  }
  
  .timeline-content h3 {
    margin: 0 0 10px;
    color: #01c2ff;
    font-size: 1.5rem;
  }
  
  .timeline-content p {
    line-height: 1.6;
    color: #ffffff;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #333333;
    color: #ffffff;
    font-size: 0.9rem;
  }
  