/* --------------- GENERAL STYLING ---------------- */
/* Include Source Sans Pro font */
@import url('https://fonts.googleapis.com/css?family=Source%20Sans%20Pro%3A400%2C600%7CSource%20Sans%20Pro%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px; /* 1rem = 16px */
  }
body {
    background-color: #1C1E28;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100vw;

}
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    html {
        font-size: 14px; /* 1rem = 14px */
      }
    .container {
        width: 100%;
        margin: 0 auto;
    }  
}

/* --------------- HEADER --------------- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 100%;
    background-color: #1C1E28;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
    z-index: 1000;
}

@media (max-width: 768px) {
    header {
        left: 0;
        right: 0;
        width: 100%;
        padding-left: 0.25em;
        padding-right: 0.25em;
    }
}

/* Logo */
header .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 40px;
    padding-left: 10px;
}
header .logo img {
    max-height: 40px;
    height: auto;
    width: auto;
    display: block;
}
@media (max-width: 768px) {
    header .logo {
        padding-left: 2%;
    }
    header .logo img {
        max-height: 35px;
        height: auto;
        width: auto;
        display: block;
    }
}
@media (max-width: 480px) {
    header .logo img {
        max-height: 35px;
    }
}

/* Navigation */
#main-menu {
    display: flex;
    align-items: center;
    gap: 1em;
}
nav ul {
    list-style: none;
    justify-content: center;
    display: flex;
    padding: 0;
}
nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.5rem;
    font-weight: 300;
    margin-right: 1.25em;
}
nav ul li a:hover {
    color: #B9B2AA;
}
@media (max-width: 1600px) {
    nav ul {
        justify-content: center;
    }
    nav ul li a {
        font-size: 1.2rem;
    }
    nav ul li a:hover {
        color: #b9b2aa;
    }
}

/* Buy Now Button */
.buy-now-link {
    margin-right: 1em;
}
.buy-now-btn {
    background-color: #FFFFFF;
    color: #1C1E28;
    border: none;
    border-radius: 50px; /* Creates pill shape */
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.7em 3.2em;
}
.buy-now-btn:hover {
    background-color: #f0f0f0; /* Slight variation on hover */
    transform: scale(1.05); /* Slight grow effect */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Mobile Hamburger Nav */
#hamburger-menu {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  text-align: right;
}
#hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 6px auto;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
#hamburger-menu:hover span {
  background-color: #FFFFFF;
}
#hamburger-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
#hamburger-menu.open span:nth-child(2) {
  opacity: 0;
}
#hamburger-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
#hamburger-menu.open:hover span {
  background-color: #FFFFFF;
}
#hamburger-menu:not(.open) span {
  background-color: #FFFFFF;
}

@media (max-width: 1000px) {
  #hamburger-menu {
      display: block;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      padding-right: 10px;
      z-index: 2001; /* Higher than menu overlay */
  }

  #main-menu {
      flex-direction: row-reverse;
      position: relative;
      justify-content: flex-start;
      width: auto;
  }

  /* Updated dropdown menu - positioned below header */
  #main-menu ul {
      display: none;
      flex-direction: column;
      position: fixed; /* Changed to fixed positioning */
      top: 63px; /* Position below the header (adjust based on your header height) */
      left: 0;
      right: 0;
      width: 100vw;
      background-color: #1C1E28;
      justify-content: center;
      align-items: center;
      border: none;
      border-radius: 0;
      box-sizing: border-box;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 2000; /* Below hamburger button but above content */
      backdrop-filter: blur(10px);
  }

  #main-menu ul.show {
      opacity: 1;
      display: flex;
      animation: slideDown 0.3s ease-out;
  }

  /* Add slide-down animation */
  @keyframes slideDown {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  #main-menu ul li {
      margin: 0.8em 0;
      display: flex;
      justify-content: center;
      width: 100%;
      max-width: 300px;
  }

  #main-menu ul li a {
      font-size: 1.3rem;
      text-align: center;
      display: block;
      width: 100%;
      padding: 0.5em 1em;
      margin: 0 auto;
      box-sizing: border-box;
      border-radius: 8px;
      transition: all 0.3s ease;
  }

  #main-menu ul.show li a:hover {
      color: #FFFFFF;
      background-color: rgba(255, 255, 255, 0.1);
      transform: scale(1.05);
  }

  /* Keep Buy Now Button styling exactly the same */
  .buy-now-link {
      order: 1;
      margin-right: 3em;
      display: flex;
      align-items: center;
  }

  .buy-now-btn {
      background-color: #FFFFFF;
      color: #1C1E28;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 300;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0.6em 3em;
  }

  .buy-now-btn:hover {
      background-color: #f0f0f0;
      transform: scale(1.05);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Hamburger menu order */
  #hamburger-menu {
      order: 2;
  }
}

/* Additional styles for very small screens */
@media (max-width: 480px) {
  #main-menu ul {
      top: 63px; /* Adjust for smaller header on mobile */
  }

  #main-menu ul li {
      margin: 0.6em 0;
      max-width: 280px;
  }

  #main-menu ul li a {
      font-size: 1.2rem;
      padding: 0.4em 0.8em;
  }

  .buy-now-btn {
      font-size: 1rem;
      padding: 0.6em 2.2em;
  }
}

/* Section 1 - Product */
.section1 {
    padding: 2em 0 2em 0;
    background-color: #414F47;
    color: #FFFFFF;
  }
  
  .section1-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
  
  .section1-content .left {
    flex: 1;
    padding-right: 2em;
    min-width: 300px;
  }
  
  .section1-content .right {
    width: 50%;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
  }
  
  .section1-content h1 {
    font-size: 3rem;
    font-weight: 500;
    text-align: left;
  }
  
  .product-description {
    font-size: 1.2em;
    font-weight: 200;
    text-align: left;
    padding: 10px 0 10px 0;
    line-height: 1.5;
  }
  
  /* Features row styling */
  .features-container {
    margin: 2em 0;
    width: 90%;
    overflow: hidden;
  }
  
  .features-scroll {
    display: flex;
    gap: 1em;
    width: 100%;
  }
  
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 10px;
  }
  
  .feature-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5em;
  }
  
  .feature-item p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 200;
    line-height: 1.3;
  }
  
  /* Product Gallery */
  .product-gallery {
    position: relative;
    width: 100%;
  }
  
  .gallery-container {
    position: relative;
    width: 100%;
    height: 400px;
  }
  
  .gallery-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-container img.active {
    opacity: 1;
  }
  
/* Navigation Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(28, 30, 40, 0.8);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
  user-select: none;
}

.gallery-arrow:hover {
      background-color: rgba(255, 255, 255, 0.1);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-arrow.prev {
  left: 2em;
}

.gallery-arrow.next {
  right: 2em;
}

/* Arrow icons using CSS */
.gallery-arrow::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transition: border-color 0.3s ease;
}

.gallery-arrow.prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.gallery-arrow.next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}

/* Dot navigation */
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-top: 1em;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-dot.active {
  background-color: #FFFFFF;
}

.gallery-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

/* Mobile responsiveness */

@media (max-width: 768px) {
  .gallery-arrow {
      width: 40px;
      height: 40px;
      font-size: 16px;
  }
  
  .gallery-arrow.prev {
      left: 5px;
  }
  
  .gallery-arrow.next {
      right: 5px;
  }
  
  .gallery-container {
      height: 300px;
  }
}

/* Hide arrows on very small screens to avoid overlap */
@media (max-width: 480px) {
  .gallery-arrow {
      width: 35px;
      height: 35px;
      font-size: 14px;
  }
}
  /* Section 2 - Product Scene */
  .section2 {
    width: 100%;
    max-width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    background-color: #1C1E28;
    color: #FFFFFF;
  }
  
  .section2-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .section2-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }
  
  /* Section 3 - Info */
  .section3 {
    scroll-margin-top: 85px;
    padding: 2em;
    background-color: #FFFFFF;
    color: #1C1E28;
  }
  
  .section3-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  
  .section3-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1C1E28;
    margin-left: 1.5em;
  }
  
  .section3-content h3 {
    font-size: 1.75em;
    font-weight: 300;
    color: #414F47;
    margin: 1em 2.5em;
  }
  
  .section3-content p {
    margin: 0 4em;
    font-size: 1.2em;
    font-weight: 200;
    text-align: left;
  }
  
  .section3-content ul {
    margin-left: 6em;
    flex-direction: column;

  }
  
  .section3-content li {
    font-size: 1.2em;
    font-weight: 200;
    padding-bottom: 0.3em;
    padding-right: 1em;
    text-align: left;
  }
  
  .section3-content li b {
    font-size: 1.2rem;
    font-weight: 400;
    color: #BE3D26;
  }
  
  .section3 table {
    width: 85%;
    border-collapse: collapse;
    margin: 0 auto;
    overflow-x: auto;
  }
  
  .section3 table td {
    border-bottom: 1px solid #b9aaaa;
    padding: 0.2em;
    font-size: 1.2rem;
    font-weight: 200;
  }
  
  .section3 table tr td:first-child {
    width: 25%;
    padding-left: 0.5em;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1C1E28;
  }
  
  #additional-notes {
    font-style: italic;
    font-size: 0.9rem;
    font-weight: 200;
  }
  
  #table-sectiontitle {
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.5em 0 0.25em 0;
  }
  
  /* Section 5 - Automations */
  .section5 {
    scroll-margin-top: 85px;
    padding: 2em;
    background-color: #FFFFFF;
    color: #1C1E28;
  }
  
  .section5-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  
  .section5-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1C1E28;
    margin-left: 1.5em;
  }
  
  .section5-content h3 {
    font-size: 1.75rem;
    font-weight: 300;
    color: #414F47;
    margin: 1em 2.5em;
  }
  
  .section5-content p {
    margin: 0 4em; 
    font-size: 1.2em;
    font-weight: 200;
    text-align: left;
    width: auto; 
  }
  
  #action-comment {
    font-size: 1rem;
    margin: 0 4em; 
    padding-top: 0.5em;
    width: auto; 
    text-align: left; 
    font-style: italic;
    font-weight: 400;
    color: #BE3D26;
  }
  
  .section5-content a {
    color: #414F47;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
  }
  
  .section5-content a:hover p {
    color: #BE3D26;
  }
  
  .section5-content a:hover img {
    opacity: 0.8;
  }
  
  /* -- TEST AREA -- */
  .section5 .responsive-table table {
    width: 85%;
    border-collapse: collapse;
    table-layout: auto;
    margin: 0 auto; 
    margin-top: 2em;
  }
  
  .section5 .responsive-table td {
    text-align: center; 
    padding: 0.2em; 
    vertical-align: middle;
    font-size: 1.2rem;
    font-weight: 200; 
  }
  
  .section5 .responsive-table td img {
    max-height: 100px;
    width: auto;
  }
  
  .section5 .responsive-table td p {
    font-size: 1.2em; 
    font-weight: 200; 
    padding: 0.5em 0; 
    text-align: center; 
    margin: 0 0; 
  }
  
  .section5 .responsive-table td:first-child {
    width: 25%; 
    padding-left: 0.5em; 
    color: #1C1E28; 
    text-align: center; 
    font-style: italic;
    font-size: 1.2rem; 
    font-weight: 400; 
  }
  
  /* Section 6 - Support */
  .section6 {
    scroll-margin-top: 85px;
    padding: 2em;
    background-color: #1C1E28;
    color: #FFFFFF;
  }
  
  .section6-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  
  .section6-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-left: 1.5em;
    margin-bottom: 1em;
  }
  
  .section6-content ul {
    width: 100%; 
  }
  
  .section6-content li {
    font-size: 1.2em; 
    font-weight: 200;
    margin-left: 3em; 
    padding-bottom: 0.3em; 
    padding-right: 1em;
    color: #FFFFFF;
    text-align: left;
  }
  
  .section6-content li br {
    display: none;
  }
  
  .section6-content a {
    color: #B9B2AA;
    font-weight: 300;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
  }
  
  .section6-content a:hover {
    color: #BE3D26;
  }
  
  /* Responsive styles for all sections */
  @media (max-width: 1000px) {
    /* Section 1 Mobile */
    .section1 {
      padding: 2em 0;
    }
    
    .section1-content {
      flex-direction: column;
      width: 95%;
    }
    
    .section1-content .left {
      width: 100%;
      padding-right: 0;
      min-width: auto;
    }
    
    .section1-content .right {
      width: 100%;
      margin-top: 0em;
    }
    
    .section1-content h1 {
      font-size: 1.75rem; 
      font-weight: 400;
      margin: 0em 0 0em 0em; 
      text-align: left;
    }
    
    .product-description {
      font-size: 1.2rem; 
      margin: 0 auto; 
      width: 100%; 
      text-align: left;
    }
    
    .features-scroll {
      overflow-x: auto;
      font-size: 0.7em;
      padding-bottom: 1em;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      margin-left: 0; /* Reset margin for mobile */
    }

    .features-scroll::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Edge */
    }
    
    .gallery-container {
      height: 300px;
    }
  
    /* Section 2 Mobile */
    .section2 {
      padding: 0;
      background-color: #1C1E28;
      color: #FFFFFF;
    }
    
    .section2-content {
      flex-direction: column;
      text-align: left;
      overflow-x: hidden;
      width: 100%;
      padding: 0;
    }
  
    /* Section 3 Mobile */
    .section3 {
      padding: 0 0 2em 0;
      background-color: #FFFFFF;
      color: #1C1E28;
    }
    
    .section3-content {
      display: flex;
      flex-direction: column;
      width: 100%;
      margin: 0 auto;
    }
    
    .section3-content h2 {
      font-size: 1.75rem;
      font-weight: 400;
      margin: 0.5em 0 0.5em 0.25em;
    }
    
    .section3-content h3 {
      font-size: 1.5rem;
      font-weight: 400;
      color: #414F47;
      margin: 0.5em;
    }
    
    .section3-content p {
      font-size: 1.2rem;
      margin: 0 auto;
      width: 95%;
      text-align: left;
    }
    
    .section3-content ul {
      margin: 0em 2em 0em 2em;
      width: 95%;
    }
    
    .section3-content li {
      font-size: 1em;
      padding-bottom: 0.3em;
      padding-right: 1em;
      text-align: left;
    }
    
    .section3-content li b {
      font-size: 1em;
      color: #BE3D26;
    }
    
    .section3 table {
      width: 95%;
      border-collapse: collapse;
      margin: 0 auto 1em auto;
      white-space: normal;
      table-layout: fixed;
    }
    
    .section3 table td {
      border-bottom: 1px solid #b9b2aa;
      padding: 0.2em;
      font-size: 1.1rem;
      font-weight: 300;
      white-space: normal;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .section3 table tr td:first-child {
      width: 40%;
      padding-left: 0;
      font-size: 1.1rem;
      font-weight: 400;
      color: #414F47;
      word-wrap: normal;
      overflow-wrap: break-word;
    }
  
    /* Section 5 Mobile */
    .section5 {
      padding: 0 0 2em 0; 
      background-color: #FFFFFF;
      color: #1C1E28;
    }
    
    .section5-content {
      flex-direction: column;
      width: 95%;
      margin: 0 auto;
    }
    
    .section5-content h2 {
      font-size: 1.75rem; 
      font-weight: 400;
      margin: 0.5em 0 0.5em 0.25em;
    }
    
    .section5-content h3 {
      font-size: 1.5rem; 
      font-weight: 400; 
      color: #414F47;
      margin: 0.5em; 
    }
    
    .section5-content p {
      font-size: 1.2rem;
      margin: 0 auto;
      width: 90%;
      text-align: center;
    }
    
    #action-comment {
      font-size: 1rem;
      margin: 0 auto;
      width: 90%;
      padding-top: 0.5em;
      text-align: left; 
      font-style: italic;
      font-weight: 400;
      color: #BE3D26;
    }
    
    .section5 .responsive-table table {
      width: 95%; 
      margin: 0 auto 1em auto; 
      white-space: normal;
      table-layout: fixed;
    }
    
    .section5 .responsive-table td {
      padding: 0.5em;
      font-size: 0.5rem; 
      font-weight: 300; 
      white-space: normal;
      word-wrap: break-word;
      overflow-wrap: break-word;
      text-align: center;
    }
    
    .section5 .responsive-table td:first-child {
      width: 15%; 
      padding-left: 0; 
      font-size: 0.8rem;
      font-weight: 400; 
      color: #414F47; 
      word-wrap: normal;
      overflow-wrap: break-word;
    }
    
    .section5 .responsive-table td p {
      font-size: 1.1rem; 
      padding: 0.2em 0; 
      text-align: center; 
    }
  
    /* Section 6 Mobile */
    .section6 {
      padding: 0 0 2em 0; 
      background-color: #1C1E28;
      color: #FFFFFF;
    }
    
    .section6-content {
      flex-direction: column;
      width: 100%;
      margin: 0 auto;
    }

@media (max-width: 786px) {
    /* -- TEST AREA --*/
    .section5 .responsive-table table,
    .section5 .responsive-table thead,
    .section5 .responsive-table tbody,
    .section5 .responsive-table th,
    .section5 .responsive-table tr {
        display: block;
        width: 100%;
    }

    .section5 .responsive-table tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 1em;
    }

    .section5 .responsive-table th,
    .section5 .responsive-table td {
        width: 100%; /* Initially, make all cells 100% to stack */
        box-sizing: border-box;
    }

    .section5 .responsive-table td {
        text-align: center; /* Horizontal centering */
        vertical-align: middle; /* Vertical centering */
        display: flex; /* Use flexbox for better control */
        align-items: center; /* Center content vertically */
        justify-content: center; /* Center content horizontally */
    }

    /* Column 1 on its own row */
    .section5 .responsive-table td:first-child {
        width: 100%; /* Column 1 occupies full width */
        padding-left: 1em;
        text-align: left;
        font-style: italic;
        font-size: 1rem;
    }

    /* For subsequent rows, make them 2 columns per row */
    .section5 .responsive-table tr:nth-child(n+2) .responsive-table td {
        width: calc(50% - 1px); /* Make each column 50% of the row */
    }

    .section5 .responsive-table td img {
        max-width: 90%;
        height: auto;
    }

    .section5 .responsive-table thead {
        display: none; /* Hide headers on mobile for compact design */
    }

    /* Adjustments for non-first columns (columns after the first) */
    .section5 .responsive-table td:not(:first-child) {
        width: 50%; /* Make all non-first columns 50% */
    }
    /* -- TEST AREA --*/
}

    
    .section6-content h2 {
      font-size: 1.75rem;
      font-weight: 400;
      margin: 0.5em 0 0.5em 0.25em; 
      color: #FFFFFF;
    }
    
    .section6-content ul {
      margin-left: 2em; 
      width: 90%; 
    }
    
    .section6-content li {
      font-size: 1em; 
      padding-bottom: 0.3em;
      padding-right: 1em;
      text-align: left;
      color: #FFFFFF;
    }
  }

  @media (max-width: 1024px) {
    /* Tablet styles - slightly narrower than desktop, but more room than mobile */
    .section1-content {
      flex-direction: column;
      width: 90%;
    }
  
    .section1-content .left,
    .section1-content .right {
      width: 100%;
    }
  
    .section1-content h1 {
      font-size: 2rem;
    }
  
    .product-description {
      font-size: 1.25rem;
    }
  
    .features-scroll {
      font-size: 0.8em;
    }
  
    .section3-content h2,
    .section5-content h2,
    .section6-content h2 {
      font-size: 2rem;
    }
  
    .section3-content h3,
    .section5-content h3 {
      font-size: 1.75rem;
    }
  
    .section3-content p,
    .section5-content p {
      font-size: 1.3rem;
    }
  
    .section3 table td,
    .section5 .responsive-table td {
      font-size: 1rem;
    }
  }

  /* Section 7 - Footer */
  .footer {
    background-color: #414F47;
    color: #f0f0f0;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column {
    min-width: 120px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
  }

  .footer-logo {
      margin-bottom: 30px;
      text-align: center;
  }

  .footer-links {
      justify-content: center;
      text-align: center;
      width: 100%;
  }

  .footer-column {
      margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .footer-links {
      gap: 0px;
      justify-content: center;
      text-align: center;
      width: 100%;
  }
  .footer-container {
      flex-direction: column;
  }

  .footer-column {
      margin-bottom: 20px;
  }
}
