  body {
       margin: 0;
       font-family: Arial, Helvetica, sans-serif;
       background-color: #111;
       color: #fff;
       display: flex;
       flex-direction: column;
       min-height: 100vh;
  }

header {
     background:
          linear-gradient(rgba(0, 0, 0, 0.6),
               rgba(0, 0, 0, 0.6)),
          url("../img/header-bg-001.jpg") center center / cover no-repeat;

     text-align: center;
     padding: 10px 5px;
     border-bottom: 2px solid #ff0;
}

.logo {
     width: 450px;
     /* desktop target size */
     max-width: 100%;
     /* never exceed viewport width */
     height: auto;
}


  a {
       color: #fff;
  }

  a:hover {
       color: #ff0;
       direction: underline;
  }

  main {
       flex: 1;
       display: flex;
       justify-content: center;
       align-items: flex-start;
       padding: 20px 10px;
       flex-wrap: wrap;
       gap: 5px;
  }

  footer {
       background: #222;
       padding: 20px 10px;
       color: #ccc;
       font-size: 14px;
       border-top: 2px solid #ff0;
  }

  footer .row {
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       gap: 10px;
  }

  .footer-col-2,
  .footer-col-3,
  .footer-col-4,
  .footer-col-5 {
       flex: 1 1 200px;
       min-width: 180px;
  }

  h6,
  h5 {
       color: #ff0;
       margin-bottom: 5px;
  }

  .menu-footer {
       list-style: none;
       padding: 0;
  }

  .menu-footer li {
       margin: 5px 0;
  }

  .menu-footer a {
       color: #fff;
       text-decoration: none;
       transition: color 0.3s;
  }

  .menu-footer a:hover {
       color: #ff0;
  }

  .footer-bottom {
       border-top: 2px solid #ff0;
       margin-top: 10px;
       padding-top: 20px;
       text-align: center;
  }

  hr {
       border: none;
       border-top: 1px solid #ff0;
  }

  /* ==============================
   IMAGE ROTATOR
================================ */

  .image-rotator {
       max-width: 900px;
       margin: 0 auto;
       text-align: center;
  }

  .image-rotator-frame {
       position: relative;
       width: 100%;
       height: 450px;
       overflow: hidden;
       border: 2px solid #ff0;
       background: #000;
  }

  .rotator-image {
       position: absolute;
       inset: 0;
       width: 100%;
       height: 100%;
       object-fit: contain;
       opacity: 0;
       transition: opacity 1.5s ease-in-out;
  }

  .rotator-image.active {
       opacity: 1;
  }

  .rotator-controls {
       margin-top: 15px;
  }

  .rotator-controls button {
       background: #222;
       color: #ff0;
       border: 1px solid #ff0;
       padding: 8px 14px;
       margin: 0 5px;
       font-size: 18px;
       cursor: pointer;
  }

  .rotator-controls button:hover {
       background: #ff0;
       color: #000;
  }

  .rotator-video {
       position: absolute;
       inset: 0;
       width: 100%;
       height: 100%;
       object-fit: contain;
       opacity: 0;
       transition: opacity 1.5s ease-in-out;
       background: #000;
  }

  .rotator-video.active {
       opacity: 1;
  }

  /* ==============================
   MAIN LAYOUT
================================ */

  .layout {
       display: flex;
       gap: 30px;
       align-items: flex-start;
  }

  .sidebar {
       flex: 0 0 55%;
  }

  .content {
       flex: 1;
  }

  /* Responsive fallback */
  @media (max-width: 900px) {
       .layout {
            flex-direction: column;
       }

       .sidebar,
       .content {
            flex: 1 1 100%;
       }
  }

  /* ==============================
   MOBILE REFINEMENTS
================================ */

  @media (max-width: 600px) {

       .logo {
            width: 90%;
            max-width: 320px;
       }

       header {
            padding: 15px 10px;
       }

       .image-rotator-frame {
            height: 280px;
       }

       .rotator-controls button {
            font-size: 20px;
            padding: 12px 18px;
            margin: 5px;
       }

       main {
            padding: 20px 15px;
       }

       p {
            line-height: 1.6;
       }
  }
