      /* Reset margin, padding, and set box-sizing for consistent layout */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      /* Style for body tag: black background and sans-serif font */
      body {
        background-color: #000;
        font-family: sans-serif;
      }

      /* Fixed top bar: centered, full-width up to 1366px, flex layout */
      .fixed-bar {
        position: fixed; /* Stick to top of screen */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Adjust to center */
        width: 100%;
        max-width: 1366px;
        height: 40px;
        background-color: rgba(183, 28, 28, 0); /* Transparent red */
        color: white;
        font-weight: bold;
        display: flex; /* Flex layout for items inside */
        align-items: center; /* Center items vertically */
        justify-content: space-between; /* Space between left and right content */
        padding: 0 1rem; /* Left and right padding */
        z-index: 999; /* Fixed bar appears above most elements */
        transition: background-color 0.3s ease; /* Smooth background transition */
      }

      /* Desktop menu container: flex layout */
      .menu {
        display: flex;
      }

      /* Unordered list inside menu: horizontal layout with gap */
      .menu ul {
        display: flex;
        list-style: none; /* Remove bullet points */
        gap: 1rem; /* Gap between menu items */
      }

      /* Menu links: white text, no underline */
      .menu ul li a {
        color: white;
        text-decoration: none;
      }

      /* Hamburger menu toggle (mobile) - hidden by default */
      .menu-toggle {
        font-size: 1.5rem;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
        display: none; /* Shown only on smaller screens */
      }

      /* Mobile menu panel: hidden off-screen by default */
      .menu-container {
        position: fixed;
        top: 40px; /* Space below header */
        right: 0;
        width: 300px;
        height: calc(100vh - 40px); /* Full height minus header */
        /* Full height minus the fixed header */
        background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
        color: white;
        transform: translateX(100%); /* Start offscreen */
        transition: transform 0.3s ease; /* Slide animation */
        padding: 1rem;
        z-index: 998; /* Below fixed-bar */
      }

      /* Mobile menu list style */
      .menu-container ul {
        list-style: none;
        padding: 0;
      }

      .menu-container ul li {
        margin-bottom: 1rem; /* Space between links */
      }

      .menu-container ul li a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
      }

      /* Show menu when class 'open' is added via JavaScript */
      .menu-container.open {
        transform: translateX(0);
      }

      /* Main content wrapper with padding */
      .container {
        max-width: 1366px;
        margin: 0 auto;
        width: 100%;
        padding-top: 40px; /* Below fixed header */
        padding-bottom: 40px;
      }

      /* Section with background image */
      .background-wrapper {
        background-image: url("../images/cvc_shaded.jpg"); /* Decorative Logo in background */
        background-repeat: no-repeat;
        background-position: right center;
        background-size: auto 70%; /* Adjust image size */
        background-attachment: scroll;
      }

      /* Container for horizontally scrollable image gallery */
      .gallery-container {
        position: relative;
        width: 100%;
        overflow: hidden;
      }

      .gallery {
        display: flex;
        overflow-x: auto; /* Horizontal scroll */
        scroll-behavior: smooth;
        padding: 1rem;
        gap: 1rem;
      }

      .gallery::-webkit-scrollbar {
        height: 10px; /* Height of scroll bar */
      }

      .gallery::-webkit-scrollbar-thumb {
        background-color: #999; /* Scrollbar background color */
        border-radius: 5px;
      }

      .gallery img {
        height: 150px;
        width: 250px;
        object-fit: cover;
        cursor: pointer;
        flex-shrink: 0;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Puts shadow around image */
      }

      /* Left/right arrows for image gallery */
      .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        font-size: 2rem;
        width: 40px;
        height: 60px;
        cursor: pointer;
        z-index: 1;
      }

      .arrow.left {
        left: 0;
      }

      .arrow.right {
        right: 0;
      }

      /* Popup overlay for enlarged images */
      .popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
        display: none; /* Hidden by default */
        align-items: center;
        justify-content: center;
      }

      .popup-content {
        position: relative;
        background: white;
        padding: 1rem;
        border-radius: 8px;
      }

      .popup-content img {
        height: 450px;
        max-width: 90vw;
        object-fit: contain;
      }

      .close-btn { /* Close button setup */
        position: absolute;
        top: 8px;
        right: 8px;
        background: red;
        color: white;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0.3rem 0.6rem;
        border-radius: 50%;
      }

      .smallfont {
        color: black;
        font-size: 1.1rem;
        text-align: justify;
        background-color: white;
        border: none;
        margin: 1rem;
        padding: 1rem;
        width: 100%; /* Needs to be 100% and not 100vw so it goes onli to website width and not screen width */
      }

      .iframe {
        height: 20rem;
        width: 100%; /* Needs to be 100% and not 100vw so it goes onli to website width and not screen width */
        margin: 1rem;
      }

      /* On small screens: shrink background wrapper height */
      @media (max-width: 768px) {
        .background-wrapper {
          background-size: auto 150px;
          /* Adjust as needed for row2 height */
        }
      }

      /* Adjustments all sections below */
      section[class^="row"] {
        display: flex;
        background-color: transparent;
      }

      section[class^="row"]>div {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        background-color: transparent;
      }

      section.row1 .col1 {
        border: 0px solid yellow;
        /* Not required but useful for setup and editing of sections */
        width: 30%;
        height: 300px;
        background-color: rgba(0, 0, 0, 0);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.5rem, 2.0vw, 2.5rem);
        color: white;
        text-align: center;
        padding: 3rem 1rem 3rem 0;
      }

      section.row1 .col1 img {
        width: 90%;
        object-fit: cover;
      }

      section.row1 .col2 {
        border: 0px solid yellow;
        width: 20%;
        height: 300px;
        background-color: rgba(0, 0, 0, 0);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.3rem, 1.5vw, 2.0rem);
        color: darkgoldenrod;
        text-align: left;
        padding: 2rem 2rem 2rem 0;
      }

      section.row1 .col3 {
        border: 0px solid yellow;
        width: 50%;
        height: 300px;
        background-color: rgba(0, 0, 0, 0);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.5rem, 2.0vw, 2.5rem);
        color: white;
        text-align: center;
        padding: 2rem;
      }

      section.row2 .col1 {
        border: 0px solid yellow;
        width: 45%;
        min-height: 150px;
        background-color: rgba(0, 0, 0, 0);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.5rem, 4.5vw, 4.0rem);
        text-align: center;
        padding: 1rem;
      }

      section.row2 .col2 {
        border: 0px solid yellow;
        width: 55%;
        min-height: 150px;
        background-color: rgba(0, 0, 0, 0);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.0rem, 2.2vw, 3.0rem);
        text-align: center;
        padding: 1rem;
      }

      section.row3 .col1 {
        border: 0px solid yellow;
        width: 45%;
        height: 200px;
        background-color: rgba(0, 0, 0, 0);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.5rem, 1.5vw, 2.0rem);
        color: darkgoldenrod;
        text-align: center;
        padding: 1rem;
        margin: 0 0 3.3rem 0;
      }

      section.row3 .col2 {
        border: 0px solid yellow;
        width: 55%;
        height: 200px;
        background-color: rgba(0, 0, 0, 0);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.5rem, 1.5vw, 4.0rem);
        text-align: center;
        padding: 1rem 1rem 3.3rem 1rem;
        margin: 0 0 3.3rem 0;
      }

      section.row4 .col1 {
        border: 0px solid yellow;
        width: 40%;
        height: 300px;
        background-color: rgba(255, 255, 255, 1);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.2rem, 1.1vw, 2rem);
        color: black;
        text-align: justify;
        padding: 2rem 1rem 2rem 1rem;
      }

      section.row4 .col2 {
        border: 0px solid yellow;
        width: 30%;
        height: 300px;
        background-color: rgba(255, 255, 255, 1);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.0rem, 1.0vw, 1.1rem);
        color: black;
        text-align: center;
        padding: 2rem 1rem 2rem 1rem;
      }

      section.row4 .col3 {
        border: 0px solid yellow;
        width: 30%;
        height: 300px;
        background-color: rgba(255, 255, 255, 1);
        flex-direction: column;
        font-family: garamond, sans-serif;
        font-size: clamp(1.5rem, 1.5vw, 4.0rem);
        color: black;
        text-align: center;
        padding: 2rem 1rem 2rem 1rem;
      }

      section.row5 .col1 {
        border: 0px solid yellow;
        font-family: garamond, sans-serif;
        font-size: clamp(1.3rem, 1.5vw, 2.0rem);
        width: 100%;
        height: 0;
        padding: 1rem 1rem 1.5rem 1rem;
      }

      section.row6 .col1 {
        border: 0px solid yellow;
        width: 100%;
        height: 250px;
        padding: 2rem 1rem 2rem 1rem;
      }

      /* @media makes adjustments to site for smaller screens / responsive settings */
      @media (max-width: 1150px) {
        .menu {
          display: none;
        }

        .menu-toggle {
          display: block;
        }
      }

      @media (max-width: 768px) {
        section[class^="row"] {
          flex-direction: column;
        }

        section[class^="row"]>div {
          width: 100% !important;
        }

        section.row2 .col1,
        section.row2 .col2 {
          min-height: 75px;
        }
      }

      /* Puts fixed/sticky footer at bottom of page - needs JS below */
      .footer-bar {
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        font-weight: bold;
        color: white;
        background-color: rgba(183, 28, 28, 1);
      }

      /* unvisited/visited/active link */
      .footer-bar a:link,
      .footer-bar a:visited,
      .footer-bar a:active {
        text-decoration: none;
        color: rgba(255, 255, 255, 1);
      }

      /* mouse over link */
      .footer-bar a:hover {
        color: rgba(0, 0, 0, 1);
      }

      /* Map styling */
      .map-wrapper {
        width: 100%;
        height: 100%;
        border-radius: 0.625rem;
        overflow: hidden;
        box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
      }

      /* Sets map size */
      .google-map {
        width: 100%;
        height: 100%;
        border: none;
      }

      @media (max-width: 768px) {

        section.row1 .col3,
        section.row2 .col2,
        section.row3 .col1,
        section.row3 .col2 {
          display: none;
        }

        section.row1 .col2,
        section.row4 .col1,
        section.row4 .col2,
        section.row4 .col3 {
          height: auto;
          padding: 1rem;
        }

        section.row1 .col1 img {
          height: 270px;
          object-fit: contain;
          /* or cover, depending on your preference */
        }

        .background-wrapper {
          background-image: none;
        }
      }