    body, html { margin: 0; padding: 0; background-color: #000; font-family: sans-serif; color: #fff; }
    html { scroll-behavior: smooth; }
    .h2_wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    h2 {
      margin-bottom: 1rem;
      text-align: center;
      padding: 0.5rem;
      border-radius: 8px;
      border: 1px solid steelblue;
    }
    /* Static Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background-color: rgba(17,17,17,0.8);
      z-index: 2;
    }
    header .logo { display: flex; align-items: center; }
    header .logo img { height: 40px; margin-right: 10px; }
    header .site-name { font-size: 1.5rem; font-weight: bold; }
    header .site-name .secu { color: lightgrey; }
    header .site-name .bound { color: steelblue; }
    nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2rem; }
    nav a { color: #fff; text-decoration: none; }

    /* Hero Section */
    #hero-container {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 0;
    }
    #hero-container canvas {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      display: block;
    }
    #hero-container section {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 2rem;
    }
    #hero-container h1 { font-size: 2.5rem; margin: 0.5rem 0; }
    #hero-container p { font-size: 1.125rem; margin: 0; }
    /* Pentesting Section */
    #pentesting {
      background-color: #111;
      padding: 4rem 2rem;
      color: white;
    }
    #pentesting p {
      max-width: 80%;
      margin: 1rem auto;
      line-height: 1.6;
      font-size: 1.1rem;
      padding: 5px;
    }
    #social-engineering {
      background-color: #222;
      padding: 4rem 2rem;
      color: white;
    }
    #social-engineering p {
      max-width: 80%;
      margin: 1rem auto;
      line-height: 1.6;
      font-size: 1.1rem;
      padding: 5px;
    }
    #social-engineering ul {
      padding: 0.5rem;
      margin: 1rem auto;
      max-width: 80%;
      text-align: left;
    }
    #social-engineering li {
      margin-bottom: 0.5rem;
      margin-left: 3rem;
      margin-right: 2rem;
      padding: 0.5rem;
      background-color: rgba(17,17,17,0.9);
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    #auditing {
      background-color: #111;
      padding: 4rem 2rem;
      color: white;
    }
    #auditing p {
      max-width: 80%;
      margin: 1rem auto;
      line-height: 1.6;
      font-size: 1.1rem;
      padding: 5px;
    }
    /* Services Section */
    #services { background-color: #111; text-align: center; padding: 4rem 2rem; justify-items: center; }
    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
      width: 80%;
    }
    .service-card {
      background-color: rgba(17,17,17,0.9);
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.5);
      transition: transform 0.2s;
    }
    .service-card:hover { transform: translateY(-5px); }
    .service-card h3 { margin: 0.5rem 0; color: steelblue; }
    .service-card p { margin: 0; line-height: 1.4; }

    /* About Section */
    #about { background-color: #000; text-align: center; padding: 4rem 2rem; }
    .about-image { border-radius: 50%; width: 150px; height: 150px; object-fit: cover; margin-bottom: 1rem; }
    .badges { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem;}
    .badges img { width: 80px; height: 80px; }
    #about p { max-width: 80%; margin: 1rem auto; line-height: 1.6; }

    /* Contact Section */
    #contact { background-color: #111; text-align: center; padding: 4rem 2rem; }
    #contact form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 400px;
      margin: 2rem auto 0;
    }
    #contact input,
    #contact textarea {
      padding: 0.75rem;
      border: none;
      border-radius: 4px;
      background-color: #222;
      color: #fff;
    }
    #contact button {
      padding: 0.75rem;
      border: none;
      border-radius: 4px;
      background-color: steelblue;
      color: #000;
      cursor: pointer;
      font-weight: bold;
    }

    /* Footer */
    footer { background-color: #111; text-align: center; padding: 1rem; font-size: 0.875rem;}

    @media (max-width: 768px) {
    /* Header: stack logo & nav */
    header {
      flex-direction: column;
      align-items: flex-start;
      padding: 0.5rem 1rem;
    }
    nav {
      width: 100%;
      margin-top: 0.5rem;
    }
    nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    nav a {
      display: block;
      padding: 0.5rem 0;
    }

    /* Hero: smaller text & tighter padding */
    #hero-container section {
      padding: 0 1rem;
    }
    #hero-container h1 {
      font-size: 2rem;
    }
    #hero-container p {
      font-size: 1rem;
      max-width: 100%;
    }

    /* Services: one‑column grid */
    .services-container {
      grid-template-columns: 1fr;
      width: 100%;
    }

    /* About: full‑width text & wrap badges */
    #about p {
      max-width: 100%;
    }
    .badges {
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    /* Contact form: edge‑to‑edge */
    #contact form {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    /* Tiny tweaks for very small screens */
    header .site-name {
      font-size: 1.25rem;
    }
    .about-image {
      width: 120px;
      height: 120px;
    }
    footer {
      font-size: 0.75rem;
      padding: 0.5rem 1rem;
    }
  }
