/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
    padding: 2rem;
  }
  html {
    scroll-behavior: smooth;
  }
  .toc {
    position: fixed;
    top: 100px;
    left: 20px;
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,191,255,0.2);
  }
  
  .toc ul {
    list-style: none;
    padding: 0;
  }
  
  .toc li {
    margin-bottom: 1rem;
  }
  
  .toc a {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .toc a:hover {
    text-decoration: underline;
  }
  
  .tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
  }
  
  .tech-logos img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .tech-logos img:hover {
    transform: scale(1.1);
  }
  /* Header */
  header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  header h1 {
    font-size: 2.5rem;
    color: #00bfff;
    margin-bottom: 0.5rem;
  }
  
  header p {
    font-size: 1.2rem;
    color: #aaa;
  }
  
  /* Main sections */
  main {
    max-width: 900px;
    margin: 0 auto;
  }
  
  section {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
  }
  
  section h2 {
    color: #00bfff;
    margin-bottom: 1rem;
  }
  
  section p, section ul {
    font-size: 1rem;
    color: #ccc;
  }
  
  /* List styling */
  ul {
    list-style-type: disc;
    padding-left: 2rem;
  }
  
  li {
    margin-bottom: 0.5rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #ffffff;
  }
  
  /* Links (if you add any later) */
  a {
    color: #00bfff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  