  /* Base reset / layout */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #444;
      background-color: #ffffff;
      line-height: 1.5;
    }

    a {
      color: inherit;
    }

    /* Skip link for accessibility */
    .skip-link {
      position: absolute;
      left: 0.75rem;
      top: 0.75rem;
      padding: 0.5rem 0.75rem;
      background: #000;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
      transform: translateY(-150%);
      transition: transform 0.2s ease;
      z-index: 100;
    }
#main-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px; /* More room on sides */
  }
    .skip-link:focus-visible {
      transform: translateY(0);
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    /* Header / Nav */
.site-header {
  padding: 32px 20px 0; /* was 24px */
}

    
    .site-logo,
.footer-logo {
  width: 200px; /* was 110px */
}


    .site-nav {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .site-logo-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .site-logo {
      height: auto;
      display: block;
    }

    .site-logo-link:focus-visible {
      outline: 2px solid #0033cc;
      outline-offset: 4px;
      border-radius: 8px;
    }

    /* --- ABOUT SECTION --- */

    main {
      display: block;
    }

    .about-section {
      padding: 40px 20px 60px;
    }

    .about-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      gap: 60px;
      flex-wrap: wrap;
    }

    .about-photo-wrapper {
      flex: 0 0 auto;
    }

    .about-photo {
      width: 320px;
      max-width: 100%;
      border-radius: 18px;
      display: block;
    }

    /* Right content column */
    .about-content {
      flex: 1 1 0;
      max-width: 780px;
    }

    .about-content h1 {
      margin: 0 0 24px;
      font-size: 40px;
      line-height: 1.2;
      font-weight: 700;
      color: #333333;
    }

    .about-content p {
      font-size: 18px;
      line-height: 1.7;
      margin: 0 0 20px;
    }

    .about-content a {
      color: #0033cc;
      text-decoration: none;
    }

    .about-content a:hover,
    .about-content a:focus-visible {
      text-decoration: underline;
    }

    /* Numbered list */
    .about-content ol {
      margin: 10px 0 0 1.5rem;
      padding: 0;
      font-size: 18px;
      line-height: 1.7;
    }

    .about-content li + li {
      margin-top: 6px;
    }

    /* --- FOOTER --- */

    .footer {
      background: #f7f7f7;
      padding: 60px 20px;
      width: 100%;
    }

    .footer-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .footer-left {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .footer-logo {
      height: auto;
      display: block;
    }

    .footer-right {
      text-align: right;
      font-size: 18px;
      color: #444;
    }

    .footer-right h3 {
      margin-bottom: 12px;
      font-size: 22px;
      font-weight: 600;
    }

    .footer-right a {
      color: #0033cc;
      text-decoration: none;
    }

    .footer-right a:hover,
    .footer-right a:focus-visible {
      text-decoration: underline;
    }

    /* --- RESPONSIVE RULES --- */

    /* Tablet & below */
    @media (max-width: 900px) {
      .about-inner {
        flex-direction: column;
        align-items: center;
        text-align: left;
      }

      .about-content {
        width: 100%;
      }

      .about-content h1 {
        font-size: 32px;
      }

      .footer-inner {
        justify-content: center;
        text-align: center;
      }

      .footer-left {
        justify-content: center;
      }

      .footer-right {
        text-align: center;
      }
    }

    /* Small mobile */
    @media (max-width: 600px) {
      .about-section {
        padding-top: 30px;
      }

      .about-content h1 {
        font-size: 26px;
      }

      .about-content p,
      .about-content ol {
        font-size: 16px;
      }

      .site-logo,
      .footer-logo {
        width: 130px;
      }

      .footer-right {
        font-size: 16px;
      }
    }