    #title {
      text-align: center;
      padding: 50px 20px 30px;
    }

    #title p.head {
      font-family: arial, sans-serif, serif;
      font-weight: bold;
      font-size: 36px;
      margin: 0;
    }

    #title p.subhead {
      font-family: arial, sans-serif, serif;
      font-weight: bold;
      font-size: 24px;
      margin: 0;  
    }

    #title p.desc1 {
      font-size: 20px;
      margin: 10px 0;
      font-weight: 600;
    }

    #title p.caption {
      text-align: center;
      font-size: 20px;
      font-weight: bold;
    
    }

    #title img {
      margin-top: 30px;
      max-width: 90%;
      height: auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    #perspective {
      text-align: center;
      padding: 50px 20px 30px;
    }
    #perspective img {
      margin-top: 30px;
      max-width: 90%;
      height: auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    figcaption {
      font-weight: bold;
      font-size: 20px;
    }

    #perspective p.head {
      font-family: arial, sans-serif, serif;
      font-weight: bold;
      font-size: 36px;
      margin: 0;
    }
    #perspective p.desc {
      max-width: 900px;
      margin: 30px auto;
      padding: 20px;
      background-color: white;
      border-left: 5px solid #333;
      font-size: 18px;
      line-height: 1.6;
      text-align: left;
    }

    #title p.desc {
      max-width: 900px;
      margin: 30px auto;
      padding: 20px;
      background-color: white;
      border-left: 5px solid #333;
      font-size: 18px;
      line-height: 1.6;
      text-align: left;
    }

    #title p.desc2 {
      max-width: 900px;
      margin: 30px auto;
      padding: 20px;
      background-color: white;
      border-left: 5px solid #333;
      font-size: 18px;
      line-height: 1.6;
      text-align: left;
    }

    #newpaint {
      text-align: center;
      padding: 30px 20px;
    }

    #newpaint p {
      font-size: 22px;
      margin-top: 10px;
      font-weight: 600;
    }

    #newpaint img {
      margin-top: 30px;
      max-width: 90%;
      height: auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    .grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .grid-container:last-of-type {
       margin-bottom: 30px;
  }

    .grid-item {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      
    }

    .grid-item p {
      font-size: 16px;
      line-height: 1.5;
      margin-top: 10px;
      text-align: left;
    }

    .grid-item img {
       width: 50%;
       height: auto;
       max-width: 50%;
       display: block;
       margin: 0 auto;
       border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   }

   .grid-item h2 {
      text-align: center;
      margin: 10px 0;
   }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
      }

      nav ul li a {
        color: black; /* override black links */
      }
      
      .grid-container {
        grid-template-columns: 1fr; /* Stack columns on small screens */
      }

      nav ul li {
        margin: 10px 0;
      }

      #title p.desc2 {
        width: 95%;
        font-size: 16px;
      }
    }

    .pagelink {
      text-align: center;
      padding: 20px;
    }

    .pagelink p {
      font-size: 18px;
      margin: 0;
      font-weight: 600;
    }

    .pagelink a {
      color: blue;
      text-decoration: none;
      font-weight: bold;
    }

    .process-section {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* ← true centering */
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;              /* ✅ add this */
  max-width: 1000px;       /* optional max width */
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.youtube-link {
  margin-top: 15px;
  text-align: center;
}

.youtube-link a {
  text-decoration: none;
  font-weight: 600;
}



    