/* --------------- 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;
    max-width: 100%;
}
html {
    font-size: 16px; /* 1rem = 16px */
    font-weight: 300;
  }
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;
}
.container {
    width: 100%;
    max-width: auto;
    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;
    left: 18.5%;
    right: 18.5%;
    width: 100%;
    max-width: 100%;
    background-color: rgba(28, 30, 40, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: flex-end;
    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: 2%;
    margin-right: auto;
}
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; /* Adjust for smaller screens */
    }
}
@media (max-width: 480px) {
    header .logo img {
        max-height: 35px; /* Further adjust for extra-small screens */
    }
}

/* 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.5em;
    margin-right: 1.5em;
}
nav ul li a:hover {
    color: #B9B2AA;
}



@media (max-width: 1600px) {
    nav ul {
        list-style: none;
        justify-content: center;
        display: flex;
        margin-right: 1em;
        margin-left: 1em;
    }
    nav ul li a {
        color: #FFFFFF;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 1.25em;
        margin-right: 1em;
    }
    nav ul li a:hover {
        color: #BE3D26;
    }
}

/* 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: #BE3D26;
}

/* Morph into "X" when menu is open */
#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: #BE3D26;
}
#hamburger-menu:not(.open) span {
    background-color: white;
}

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

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

    nav ul {
        display: none;  /* Initially hidden */
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: auto;
        height: auto;
        max-height: 45vh;
        background-color: rgba(28, 30, 40, 0.90);
        justify-content: center;
        align-items: center;
        border: 1px solid #1C1E28;
        border-radius: 0 0 10px 10px;
        padding: 5px;
        box-sizing: border-box;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }
    nav ul.show {
        opacity: 1;
        display: flex;
        animation: slideDown 0.3s ease-out;

    }
      @keyframes slideDown {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

    nav ul li {
        margin: 0.5em 0; /* Increased margin for easier use on mobile */
        display: flex;
        justify-content: center;
        width: 90%;
    }

    nav ul li a {
        font-size: 1.5rem; /* Slightly larger font for visibility */
        text-align: center;
        display: block;
        width: 90%;
        padding: 0 0.25em; /* Add padding for better usability */
        margin: 0 auto; /* Center align links */
        box-sizing: border-box;
        overflow: hidden; /* Prevent overflow of text */
        text-overflow: ellipsis;
    }

    /* Ensure hover color is applied when menu is shown */
    nav ul.show li a:hover {
        color: #BE3D26;
    }

    a.buy-now-link {
        margin-right: 20%;
    }
    .buy-now-btn {
        min-width: 100px;
        padding: 0.5em;
        margin-right: 20%;
    }
}


/* --------------- BODY CONTENT --------------- */
/* Section 1 - Home */
.section1 {
    padding: 0 0 2em 0;
    padding-top: calc(0em + 30px);
    background-color: #414F47;
    color: #FFFFFF;
}
.section1-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}
.section1-content .left {
    flex: 1;
    width: 70%;
}
.section1-content .right {
    width: 25%;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    padding: 0 0.5em;
    }
.section1-content .right img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.section1-content h1{
    margin: 0 0 0.5em 1.25em;
    font-weight: 400;
    font-size: 3rem;
}
.section1-content h3{
    margin-left: 0em;
    margin-bottom: 0.25em;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 300;
}
.section1-content ul {
    margin-left: 4em;
    width: 75%;
    list-style: none;
}
.section1-content li {
    font-size: 1.2em;
    font-weight: 200;
    padding: 0 1em 0.3em 0;
    color: #FFFFFF;
    text-align: left;
}
.section1-content p{
    font-size: 1.2rem;
}

.section1-content .responsive-table {
    width: auto;
    margin: 0 auto;
}
.section1 .responsive-table table {
    width: auto;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 2em;
    margin-left: 0em;
}
.section1 .responsive-table th,
.section1 .responsive-table td {
    border: 0;
    text-align: center;
    padding: 0 5px;
    width: 160px ;
    vertical-align: top;
}
.section1 .responsive-table td img {
    max-width: 55px;
    height: auto;
}
.section1 .responsive-table td p {
    font-size: 0.9rem;
    padding: 0.5em 0.5em;
    margin: 0 10px;
}

.product-header {
    display: flex;
    width: 90%;
    align-items: center;  /* vertically center H1 and colours */
    gap: 20px;            /* space between H1 and colours */
}

.available-colours {
    margin: 0px 0 20px 65px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    font-weight: 200;
}

.colour-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border: none;
    position: relative;
    cursor: pointer;
}

/* Colours */
.colour-circle.white {
    background-color: #fff;
}

.colour-circle.black {
    background-color: #000;
}

.colour-circle.silver {
    background-color: #B9B2AA;
}

.colour-circle.matte {
    background-color: #000;
}

.colour-circle.twhite {
    background: Linear-gradient(
        to right,
        white,
        #ffdba5
    );
}

.colour-circle.rgb {
    background: conic-gradient(
        red,
        orange,
        yellow,
        green,
        cyan,
        blue,
        violet,
        red
    );
}

/* Tooltip on hover */
.colour-circle::after {
    content: attr(data-colour);
    position: absolute;
    bottom: 125%; /* position above the circle */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 10;
}

.colour-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.colour-circle:hover::after {
    opacity: 1;
}

.colour-circle.selected {
  outline: 1px solid rgba(255, 255, 255, 0.3);   /* Dark outline */
  outline-offset: 2px;       /* Space between circle and outline */
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3); /* Subtle glow */
  transform: scale(1.1);     /* Slightly larger to stand out */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* 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;
  }

  .hidden{
    display: none;
  }

/* Gallery Navigation Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(28, 30, 40, 0.2);
  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: 1000;
  -webkit-user-select: none;
  user-select: none;
}

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

.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: 50px;
      height: 50px;
      font-size: 16px;
  }
  
  .gallery-arrow.prev {
      left: 5px;
  }
  
  .gallery-arrow.next {
      right: 5px;
  }
  
  .product-gallery {
    position: relative;
    width: 100%;
  }
  
  .gallery-container {
    position: relative;
    width: 100%;
    height: 200px;
  }

    .gallery-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

@media (max-width: 786px) {
    .section1 {
        padding: 0 0 2em 0;
        padding-top: calc(1em + 60px);
        background-color: #414F47;
        color: #FFFFFF;
    }
    .section1-content {
        flex-direction: column;
        text-align: center;
        overflow-x: hidden;
        width: 100%;
    }
    .section1-content .left, .section1-content .right {
        width: 100%;
        padding: 0;
    }
    .product-header {
    flex-direction: column;
    align-items: flex-start; /* align to left */
    gap: 10px;
    }
    .section1 h1 {
        font-size: 2rem;
        font-weight: 300;
        margin: 0 0 0.5em 0.25em;
        text-align: left;
    }

    .section1-content h3{
    margin: -1.25em 0 1em 0.5em;
    font-size: 1.25rem;
    padding: 0;
    }

    .available-colours {
    display: flex;
    align-items: center;
    margin-left: 1em;
    padding-bottom: 10px;
    }


    .section1 ul {
        margin-left: 1em;
        width: 100%;
    }
    .section1 ul li {
        margin-left: 0;
        padding-right: 1em;
        text-align: left;
        width: 95%;
        font-size: 1.25em;
    }
    .section1-content .right img {
        max-width: 100%;
        max-height: 200px;
        margin: 0 auto;
    }
    .section1-content .responsive-table {
        width: 100%;
        margin: 0 auto;
    }
    .section1 .responsive-table table,
    .section1 .responsive-table thead,
    .section1 .responsive-table tbody,
    .section1 .responsive-table th,
    .section1 .responsive-table td,
    .section1 .responsive-table tr {
        display: block;
        width: 100%;
    }

    .section1 .responsive-table tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .section1 .responsive-table th,
    .section1 .responsive-table td {
        width: calc(50% - 1px);
        box-sizing: border-box;
        padding: 10px 30px 20px 0px;
    }

    .section1 .responsive-table td img {
        width: 100%;
        height: auto;
    }

    .section1 .responsive-table thead {
        display: none;
    }
}

/* Section 2 - Scene */
.section2 {
    width: 100%;
    height: 70vh;              
    overflow: hidden;           
    display: flex;              
    justify-content: center;    
    align-items: center;        
    background-color: #1C1E28;
    color: #FFFFFF;
    padding: 0;
    margin: 0 auto;
}

.section2 img, .section2 video {
    width: 100%;                
    height: 100%;               /* Fill container height on desktop */
    object-fit: cover;          
    object-position: center center; 
    display: block;             
}

/* Mobile-first adjustments */
@media (max-width: 1000px) {
    .section2 img, .section2 video {
        width: 100%;            /* Always fill width */
        height: auto;           /* Maintain aspect ratio */
        min-height: 100%;       /* Ensure it fills container vertically */
        object-fit: cover;      /* Crop excess vertically */
        object-position: center center; /* Center crop */
    }
}

/* Section 3 - Info */
.section3 {
    scroll-margin-top: 85px;
    padding: 2em;
    background-color: #FFFFFF;
    color: #1C1E28;
}
.section3-content {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}
.section3-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    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;
    text-align: left;
}
.section3-content ul {
    margin-left: 6em;
    width: 90%;
}
.section3-content li {
    font-size: 1.2em;
    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: 80%;
    border-collapse: collapse;
    margin: 0 auto;
    overflow-x: auto;
}
.section3 table td {
    border-bottom: 1px solid #b9b2aa;
    padding: 0.2em;
    font-size: 1.2rem;
}
.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;
}
#table-sectiontitle {
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.5em 0 0.25em 0;
}
@media (max-width: 786px) {
    .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: 300;
        margin: 0.5em 0 0.5em 0.25em;
    }
    .section3-content h3 {
        font-size: 1.5rem;
        font-weight: 300;
        color: #414F47;
        margin: 0.5em;
    }
    .section3-content p {
        font-size: 1.2rem;
        margin: 0 auto;
        width: 90%;
        text-align: left;
    }
    .section3-content ul {
        margin-left: 2em;
        width: 90%;
    }
    .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: auto;
        border-collapse: collapse;
        margin: 0 1% 1em 1%;
        white-space: normal;
        table-layout: fixed;
    }
    .section3 table td {
        border-bottom: 1px solid #b9b2aa;
        padding: 0.2em;
        font-size: 1.1rem;
        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 - Automations */
.section5 {
    scroll-margin-top: 85px;
    padding: 2em;
    background-color: #FFFFFF;
    color: #1C1E28;
}
.section5-content {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}
.section5-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1C1E28;
    margin-left: 1.5em;
}
.section5-content h3 {
    font-size: 1.75rem;
    font-weight: 300;
    color: #414F47;
    margin: 2em 0 0.5em 2.5em;
}
.section5-content p {
    font-size: 1.2rem;
    margin: 0 auto;
    width: 90%;
    text-align: left;
}
#action-comment {
    font-size: 1rem;
    margin: 0 auto;
    padding-top: 0.5em;
    width: 90%;
    text-align: justify;
    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;
    transform: scale(1.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* -- TEST AREA --*/
.section5 .responsive-table table {
    width: 90%;
    border-collapse: collapse;
    table-layout: auto; /* Variable column widths */
    margin-top: 2em;
}
.section5 .responsive-table th,
.section5 .responsive-table td {
    border: 0;
    text-align: center;
    padding-top: 8px;
    width: 17% ;
    vertical-align: middle;
    font-size: 1.2rem;
}
.section5 .responsive-table td img {
    max-height: 100px;
    width: auto;
}

.section5 .responsive-table td img.sensor-icon {
    max-height: 50px;
    transform-origin: center;
    display: inline-block;    
}
.section5 .responsive-table td p {
    font-size: 1rem;
    padding: 0.5em 2em 0.5em 2em;
    text-align: center;
}
.section5 .responsive-table td:first-child {
    width: 10%;
    padding-left: 3em;
    color: #414F47;
    text-align: right;
    font-style: italic;
    font-size: 1em;
}
.section5 .responsive-table td:not(:first-child) {
    width: 15%;
}

/* -- TEST AREA --*/
@media (max-width: 786px) {
    .section5 {
        padding: 0.5em;
        background-color: #FFFFFF;
        color: #1C1E28;
        width: 100%;
        overflow: hidden;
    }
    .section5-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }
    .section5-content h2 {
        font-size: 1.75rem;
        font-weight: 300;
        margin: 0.5em 0 0.5em 0.25em;
    }
    .section5-content h3 {
        font-size: 1.5em;
        font-weight: 300;
        color: #414F47;
        margin: 2.5em 0 0.25em 0.25em;
    }
    .section5-content p {
        font-size: 1.2em;
        margin: 0 auto;
        width: 90%;
        text-align: left;
    }

    /* -- TEST AREA --*/
    .section5 .responsive-table table,
    .section5 .responsive-table thead,
    .section5 .responsive-table tbody,
    .section5 .responsive-table th,
    .section5 .responsive-table td,
    .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;
        padding-top: 0;
    }

    .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 */
    }

    .section5 .responsive-table td p {
    font-size: 1rem;
    padding: 0em 2em 0em 2em;
    text-align: center;
    }

    /* 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 --*/
}

/* Section 6 - Support */
.section6 {
    scroll-margin-top: 85px;
    padding: 2em 2em 1em 2em;
    background-color: #1C1E28;
    color: #FFFFFF;
}
.section6-content {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}
.section6-content h2 {
    color: #FFFFFF;
    margin-left: 1.5em;
    margin-bottom: 1em;
    font-size: 2.5rem;
    font-weight: 400;
}
.section6-content ul {
    margin-left: 4em;
    width: 75%;
}
.section6-content li {
    font-size: 1.2rem;
    padding-bottom: 0.75em;
    padding-right: 1em;
    color: #FFFFFF;
    text-align: left;
}
.section6-content li br {
    display: none;
}
.section6-content a {
    color: #B9B2AA;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}
.section6-content a:hover {
    color: #BE3D26;
}

@media (max-width: 786px) {
    .section6 {
        padding: 0.5em;
        color: #1C1E28;
    }
    .section6-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }
    .section6-content h2 {
        font-size: 1.75em;
        font-weight: 400;
        margin: 0.5em 0 0.5em 0.25em;
    }
    .section6-content ul {
        margin-left: 2em;
        width: 90%;
    }
    .section6-content li br {
        display: inline;
}
}
/* 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 {
    color: #B9B2AA;
}

/* 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;
  }
}