  /* Base styling */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Noto Sans', 'Arial', sans-serif;
  }

  .nav-bar span {
    color: rgb(84, 163, 237);
  }

  .nav-bar ul li:hover {
    cursor: pointer;
    filter: invert(49%) sepia(48%) saturate(686%) hue-rotate(165deg) brightness(102%) contrast(98%);
  }

  .hamburger {
    color: rgb(84, 163, 237);
  }

  body {
    background-color: rgb(173, 208, 243);
  }

  #about {
    max-width: 850px;
    margin: 60px auto;
    padding: 40px;
    margin-top: 100px;
    background-color: black;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgb(0, 0, 0);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    transition: all 0.3s ease-in-out;
  }

  /* Heading */
  #about h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #009fe9;
    text-align: center;
  }

  #about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff4d6d;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  /* Paragraphs */
  #about p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
  }


  /* ========== ABOUT PAGE STYLES ========== */

  .about-section h1 {
    font-size: 32px;
    color: #00d4ff;
    margin-bottom: 30px;
    text-align: left;
  }

  .about-intro {
    margin-bottom: 40px;
  }

  .lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    padding: 25px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid #00d4ff;
    border-radius: 8px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: left;
  }

  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
  }

  .feature-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #00d4ff;
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
  }

  .feature-card h3 {
    font-size: 20px;
    color: #00d4ff;
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  }

  /* Tools Overview */
  .tools-overview {
    margin: 30px 0;
  }

  .tool-item {
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff8c00;
  }

  .tool-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .tool-item h3 a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .tool-item h3 a:hover {
    color: #ff8c00;
  }

  .tool-item p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Values List */
  .values-list,
  .commitment-list {
    margin: 25px 0 25px 30px;
  }

  .values-list li,
  .commitment-list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
  }

  /* User Types */
  .user-types p {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid #00d4ff;
  }

  /* CTA Box */
  .cta-box {
    margin: 35px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 140, 0, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
  }

  .cta-box p {
    margin-bottom: 20px;
  }

  .cta-box a {
    color: #00d4ff;
    text-decoration: underline;
    font-weight: 600;
  }

  .cta-box a:hover {
    color: #ff8c00;
  }

  /* Closing Text */
  .closing-text {
    font-size: 17px;
    padding: 25px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    border-left: 4px solid #ff8c00;
    margin: 40px 0 30px;
  }

  /* CTA Buttons */
  .cta-buttons {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
  }

  .cta-button {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .cta-button.primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
  }

  .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
  }

  .cta-button.secondary {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
    color: rgb(0, 0, 0);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
  }

  .cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
  }

  /* ========== RESPONSIVE ========== */

  /* Responsive tweaks */
  @media (max-width: 950px) {
    #about h2 {
      font-size: 2rem;
    }

    #about {
      padding: 20px;
      margin: 100px 20px 20px 20px;
    }

    .about-section {
      padding: 30px 20px;
      margin: 30px 15px;
    }

    .about-section h1 {
      font-size: 26px;
    }

    .about-content h2 {
      font-size: 22px;
    }

    .lead-text {
      font-size: 16px;
      padding: 20px;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .cta-buttons {
      flex-direction: column;
    }

    .cta-button {
      width: 100%;
      text-align: center;
    }
  }

  @media (max-width: 450px) {
    #about h2 {
      font-size: 1.8rem;
    }

    #about p {
      font-size: 1rem;
    }

    .about-section {
      padding: 20px 15px;
    }

    .about-section h1 {
      font-size: 24px;
    }

    .about-content h2 {
      font-size: 20px;
    }

    .lead-text {
      font-size: 15px;
    }

    .feature-card,
    .tool-item,
    .cta-box {
      padding: 20px 15px;
    }
  }