    :root {
      --accent: #2563eb; /* bold blue */
      --accent-hover: #1d4ed8;
      --background: #0f172a;
      --surface: #f9fafb;
      --text: #1e293b; /* dark slate */
      --text-muted: #64748b; /* cool gray */
      --border: #2563eb;
      --shadow-light: rgba(37, 99, 235, 0.15);
    }

    /* Reset and body */
    body {
      margin: 0;
      font-family: 'Poppins', Arial, sans-serif;
      background-color: var(--background);
      color: var(--text-muted);
      line-height: 1.6;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .logo h1 {
      color: var(--accent);
      font-size: 2.4rem;
      font-weight: 700;
      margin: 0;
      letter-spacing: 0.05em;
    }

    nav {
      display: flex;
      gap: 2.5rem;
      font-size: 1.1rem;
    }

    .header-inner {
      width: 100%;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }


    header {
      background: var(--surface);
      border-bottom: 2px solid var(--border);
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px var(--shadow-light);
    }


    nav a {
      position: relative;
      padding-bottom: 4px;
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: var(--accent);
      transition: width 0.3s ease;
    }

    nav a:hover,
    nav a.active {
      color: var(--accent-hover);
    }

    nav a:hover::after,
    nav a.active::after {
      width: 100%;
    }

    /* Main content */
    main {
      max-width: 700px;
      margin: 3rem auto 5rem auto;
      padding: 0 1.5rem;
      color: var(--text-muted);
    }

    h2 {
      color: var(--accent);
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      background: rgba(37, 99, 235, 0.05);
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 0 15px var(--shadow-light);
      color: var(--text);
    }

    label {
      font-weight: 600;
      font-size: 1rem;
      color: var(--accent);
    }

    input[type="text"],
    input[type="email"],
    textarea {
      padding: 0.8rem 1rem;
      border-radius: 0.6rem;
      border: none;
      background-color: #22222a;
      color: #eee;
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      resize: vertical;
      transition: background-color 0.3s ease;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
      outline: 2px solid var(--accent);
      background-color: #1a1a24;
    }

    textarea {
      min-height: 120px;
    }

    button[type="submit"] {
      background-color: var(--accent);
      color: #fff;
      padding: 0.9rem 2rem;
      font-weight: 700;
      font-size: 1.1rem;
      border-radius: 9999px;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
      align-self: center;
      width: 160px;
      user-select: none;
    }

    button[type="submit"]:hover {
      background-color: var(--accent-hover);
    }

    .contact-info {
      margin-top: 3rem;
      background: 0f172a;
      padding: 1.8rem 2rem;
      border-radius: 1rem;
      box-shadow: 0 0 15px var(--shadow-light);
      color: var(--text-muted);
      font-weight: 500;
      font-size: 1rem;
    }

    .contact-info h3 {
      color: var(--accent);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .contact-info p {
      margin: 0.4rem 0;
    }

    .contact-info a {
      color: var(--accent);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-info a:hover {
      color: var(--accent-hover);
      text-decoration: underline;
    }

    footer {
      background: var(--surface);
      border-top: 2px solid var(--border);
      padding: 2rem 1.5rem;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      user-select: none;
    }