/* === Base Styles === */
* {
  box-sizing: border-box;
}

html {
  font-size: 16pt;
  /* base font size */
}

body {
  min-width: 320px;
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #333333;
  /* 16pt */
}

a {
  text-decoration: underline;
  color: unset;
}

img {
  display: block;
  max-width: 100%;
}

/* === Headings - Roboto Condensed Bold with golden ratio scaling === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.618rem;
}

h2 {
  font-size: 1.618rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

.cache-bar {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  background: #1f2937;
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* === Primary Button === */
.btn {
  width: auto;
  padding: 20px;
  background-color: #70AE05;
  color: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.5s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/* === Secondary Button === */
.btn.secondary {
  background-color: white;
  color: #333333;
  border: none;
}

.btn.tertiary {
  background-color: #E0F4B5;
  color: #333333;
}

.btn:hover,
.btn.secondary:hover {
  background-color: #E0F4B5;
  color: #333333;
}

.btn.tertiary:hover {
  background-color: #70AE05;
  color: white;
}

/* === Full-width Elements === */
.notice-bar {
  background: #70AE05;
  height: 50px;
  line-height: 50px;
  font-size: 0.75rem;
  color: white;
  /* full width by default */
  display: flex;
  justify-content: center;
  /* centers inner container */
}

.notice-bar .content {
  width: 100%;
  max-width: 1396px;
  display: flex;
  justify-content: space-between;
  /* left and right alignment */
  align-items: center;
  padding: 0 10px;
  /* optional padding */
}

.spacer-bar {
  background: #fff;
  height: 30px;
  font-size: 0.5rem;
  line-height: 30px;
  text-align: center;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* === Centered Main Container === */
.container {
  max-width: 1396px;
  margin: 0 auto;
  padding: 0;
  /* no padding on desktop */
}

@media screen and (max-width: 1396px) {
  .container {
    padding: 0 20px;
    /* padding for smaller screens */
  }
}

/* === Navigation Bar === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 105px;
  background-color: #fff;
  position: relative;
  padding: 0;
}

section {
  padding: 0;
  margin: 0;
}

.spacer-20 {
  margin-bottom: 20px;
}

.spacer-40 {
  margin-bottom: 40px;
}

.spacer-60 {
  margin-bottom: 60px;
}

.spacer-80 {
  margin-bottom: 80px;
}

.spacer-none {
  margin-bottom: 0;
}

.logo {
  width: 100%;
  max-width: 350px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: radial-gradient(at right top, #E0F4B5, #70AE06); */
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 32pt;
  text-align: center;
}

.logo img {
  max-height: 100%;
}

@media (min-width: 1200px) {
  .navbar {
    justify-content: flex-start;
  }

  .nav-links {
    max-width: 80%;
  }

  /* === Submenu on large screens === */
  .nav-links {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    position: relative;
  }

  .nav-links .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    border-radius: 15px;
  }

  .nav-links li:hover>.submenu {
    display: block;
  }

  .submenu li {
    padding: 20px;
    white-space: nowrap;
  }

  .submenu li a {
    display: block;
    text-decoration: none;
    text-align: left;
    color: #70AE05;
  }
}

.nav-links {
  flex-grow: 1;
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  margin: 0;
  padding: 0 10px;
}

.nav-links a {
  text-decoration: none;
  color: #70AE05;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  display: block;
  text-align: center;
}

.nav-close {
  display: none;
}

.hamburger {
  display: none;
  font-size: 50px;
  cursor: pointer;
  background: none;
  border: none;
  color: #70AE05;
}

/* === Hero Section === */
.homepage-hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  height: 500px;
  padding: 10px 0;
}

.homepage-hero-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 30px;
}

.homepage-hero-image.large {
  grid-column: span 8;
  height: 100%;
  border-top-left-radius: 0px;
}

.homepage-hero-image.small {
  grid-column: span 4;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .homepage-hero-image.large {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .homepage-hero-image.small {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}

.homepage-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  height: 500px;
  padding: 10px 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 30px;
  grid-column: span 12;
  height: 100%;
  border-top-left-radius: 0px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}


/* === Overlay === */
.overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 40ch;
  color: white;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.overlay .btn {
  margin-top: 20px;
}

.logo-highlights {
  display: grid;
  gap: 20px;
  justify-content: center;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 15px;
  width: 100%;

  /* Default for small screens: max 2 columns */
  grid-template-columns: repeat(2, 1fr);
}

.logo-highlights img {
  max-width: 75%;
  height: auto;
  object-fit: contain;
  min-height: 80px;
}

@media (min-width: 768px) {
  .logo-highlights {
    /* 4 columns for larger screens */
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .logo-highlights img {
    min-height: unset;
  }
}

/* === Footer Styles === */
.footer {
  background: url('images/backgrounds/grass.png') #70AE05;
  background-blend-mode: screen;
  background-size: cover;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  padding-top: 60px;
  margin-top: 20px;
}

.footer .container {
  max-width: 1396px;
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: start;
  /* align text to top */
}

.footer table {
  color: white;
  font-size: 1rem;
}

.footer .about-us {
  grid-column: span 6;
  max-width: 40ch;
}

.footer .contact-us {
  grid-column: span 6;
}

.footer .about-us,
.footer .contact-us {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .copyright,
.footer .site-by {
  grid-column: span 12;
  opacity: 0.8;
  font-size: 0.8rem;
}

.footer .site-by {
  padding: 10px;
  border-radius: 5px 5px 5px 0px;
  color: #fff;
  border: 1px solid white;
  justify-self: start;
}

.footer .site-by:hover {
  background: white;
  color: #70AE05;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

.footer .policies {
  margin-top: 40px;
}

.footer .policies a {
  display: block;
}

.two-col-images-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .two-col-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.two-col-images-item {
  display: grid;
  grid-template-rows: 400px auto 1fr auto;
  border-radius: 15px;
  height: 100%;
}

.two-col-images-item p {
  max-width: 50ch;
}

.two-col-images-wrapper {
  overflow: hidden;
  border-radius: 15px;
}


.two-col-images-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col-page-heading {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}

.two-col-page-heading h1 {
  max-width: 15ch;
}

.two-col-page-heading p {
  font-size: 1.4rem;
}

.two-col-page-heading .left,
.two-col-page-heading .right {
  grid-column: span 6;
}

/* Reverse layout using order */
.two-col-page-heading.reverse .left {
  grid-column-start: 7;
}

.two-col-page-heading.reverse .right {
  grid-column-start: 1;
}

@media screen and (min-width: 768px) {
  .two-col-page-heading {
    padding: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 50px;
  }

  .two-col-page-heading p {
    margin: 0;
  }
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .two-col-page-heading {
    grid-template-columns: 1fr;
  }

  .two-col-page-heading .left,
  .two-col-page-heading .right {
    grid-column: span 12;
    grid-column-start: auto;
  }
}

.two-col-highlight {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: stretch;
  /* Change from 'start' to 'stretch' so items fill row height */
}

.two-col-highlight .text {
  padding: 30px;
  box-sizing: border-box;
}

.two-col-highlight .image {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  ;
}

.two-col-highlight .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Make the image cover its container without distortion */
  display: block;
  /* Remove any inline spacing below image */
}

.two-col-highlight.left .text {
  grid-column: 1 / span 4;
  grid-row: 1;
  align-self: center;
}

.two-col-highlight.left .image {
  grid-column: 5 / span 8;
  grid-row: 1;
}

.two-col-highlight.right .text {
  grid-column: 9 / span 4;
  grid-row: 1;
  align-self: center;
}

.two-col-highlight.right .image {
  grid-column: 1 / span 8;
  grid-row: 1;
}

@media (max-width: 768px) {

  .two-col-highlight .text {
    padding: 0;
  }

  .two-col-highlight.left,
  .two-col-highlight.right {
    display: flex;
    flex-direction: column;
  }

  /* Image first */
  .two-col-highlight.left .image,
  .two-col-highlight.right .image {
    order: 1;
  }

  /* Text second */
  .two-col-highlight.left .text,
  .two-col-highlight.right .text {
    order: 2;
  }

  .two-col-highlight.left .text,
  .two-col-highlight.left .image,
  .two-col-highlight.right .text,
  .two-col-highlight.right .image {
    grid-column: 1 / -1;
    grid-row: auto;
    align-self: auto;
    height: auto;
    /* Let image height size naturally on mobile */
  }

  .two-col-highlight.left .image img,
  .two-col-highlight.right .image img {
    height: auto;
    /* Reset image height to natural on mobile */
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.contact-grid .address {
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-grid .map iframe {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 950px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid .map iframe {
    min-height: 300px;
  }

  .contact-grid .map {
    margin-bottom: 20px;
  }
}

.mobile-only {
  display: none !important;
}

.grey-box-section {
  background-color: #f0f0f0;
  border-radius: 15px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grey-box-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
  width: 100%;
  overflow: hidden;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.grey-box-container .text {
  padding: 60px;
  align-self: center;
}

.grey-box-image-wrapper {
  display: flex;
  justify-content: center;
}

.grey-box-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .grey-box-container {
    grid-template-columns: 1fr;
  }

  .grey-box-container .text {
    padding: 40px;
  }
}

.centered-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.product-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  padding: 0;
}

.product-grid-item {
  grid-column: span 3;
  background-color: #f0f0f0;
  padding: 0px;
  box-sizing: border-box;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.product-grid-item .image-wrapper {
  aspect-ratio: 4 / 3;
  /* Or any ratio like 1/1 for square */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  mix-blend-mode: multiply;
}

.product-grid-item .image-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.product-grid-item .text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-grid-item .text .subtitle {
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.product-grid-item .text .name {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.product-grid-item .text .description {
  font-size: 0.8rem;
}

.product-grid-item .text .price {
  text-align: left;
  margin-bottom: 20px;
}

.product-grid-item .text .enquiry {
  margin-top: auto;
}

.product-grid-item .text .enquiry .btn {
  width: 100%;
  font-size: 0.8rem;
  padding: 10px;
  border-radius: 10px;
}

.product-grid-item .text .tags {
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-tag {
  font-size: 0.6rem;
  background: #fff;
  color: #1f2937;
  padding: 5px;
  margin: 3px;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
}

.product-tag.battery {
  background: #70AE05;
  color: #fff;
}

.product-tag.battery::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="white"><path d="M544 160h-16v-16c0-26.5-21.5-48-48-48H48C21.5 96 0 117.5 0 144v224c0 26.5 21.5 48 48 48h432c26.5 0 48-21.5 48-48v-16h16c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32zM464 368c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h384c8.8 0 16 7.2 16 16v224zm-304-16V160h48v192h-48zm80 0V160h48v192h-48zm80 0V160h48v192h-48z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .product-grid-item {
    grid-column: span 6;
    /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .product-grid-item {
    grid-column: span 12;
    /* 1 per row on mobile */
  }

  .product-grid-container {
    gap: 10px;
  }
}


#enquiryForm * {
  font-family: 'Roboto Condensed';
}

#enquiryForm label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1f2937;
}

#enquiryForm input[type="text"],
#enquiryForm input[type="email"],
#enquiryForm input[type="tel"],
#enquiryForm input[type="password"],
#enquiryForm textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid #d1d5db;
  /* Gray-300 */
  border-radius: 0.375rem;
  background-color: #f9fafb;
  /* Gray-50 */
  font-size: 1rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s;
}

#enquiryForm input:focus,
#enquiryForm textarea:focus {
  border-color: #3b82f6;
  /* Blue-500 */
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
  background-color: #fff;
}

#enquiryForm .error {
  color: #dc2626;
  /* Red-600 */
  font-size: 0.875rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

#enquiryForm button[type="submit"] {
  display: block;
  width: 100%;
}

@media (max-width: 640px) {
  #enquiryForm {
    padding: 0;
  }

  #enquiryForm input,
  #enquiryForm textarea {
    font-size: 0.95rem;
  }
}

.two-col-texts-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px;
  padding-left: 30px;
  padding-right: 30px;
}

.two-col-texts-left {
  grid-column: span 7;
  order: 2;
}

.two-col-texts-right {
  grid-column: span 5;
  order: 1;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .two-col-texts-container {
    gap: 10px;
    padding: 0;
  }

  .two-col-texts-left,
  .two-col-texts-right {
    grid-column: span 12;
    margin-bottom: 30px;
  }

  .two-col-texts-left {
    order: 1;
  }

  .two-col-texts-right {
    order: 2;
  }
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 16px;
}

.contact-card .map {
  border-radius: 15px;
  overflow: hidden;
}

.contact-card table {
  font-size: 1rem;
}

.contact-card h3 {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.contact-card p {
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-right h2 {
  margin-bottom: 20px;
}

/* === Mobile Styles === */
@media (max-width: 1200px) {
  .mobile-only {
    display: block !important;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    min-width: 280px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    /* remove padding here */
    overflow: hidden;
    /* clip scroll only inside scroll area */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    justify-content: flex-start;
    overflow: scroll;
  }

  @media screen and (max-width: 390px) {
    .nav-links {
      width: 100vw;
    }
  }

  .nav-links .submenu {
    padding: 0;
    list-style: unset;
    display: none;
  }

  .nav-links .submenu.open {
    display: block;
  }

  .nav-links a.open:hover::after {
    transform: rotate(90deg);
    top: 25%;
  }

  .nav-links .submenu a {
    font-size: 0.8rem;
    text-decoration: none;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-close {
    min-height: 35px;
    min-width: 35px;
    display: block;
    position: relative;
    margin: 25px 10px 30px 0px;
    background: transparent;
    border: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%2370AE06' viewBox='0 0 24 24'><path d='M18.3 5.71a1 1 0 0 0-1.41 0L12 10.59 7.11 5.7a1 1 0 1 0-1.41 1.41L10.59 12l-4.88 4.89a1 1 0 1 0 1.41 1.41L12 13.41l4.89 4.88a1 1 0 0 0 1.41-1.41L13.41 12l4.88-4.89a1 1 0 0 0 .01-1.4z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 10;
    align-self: flex-end;
  }

  .nav-links-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-links a {
    position: relative;
    width: 100%;
    max-width: 100%;
    text-align: left;
    color: #70AE06;
    border-radius: 0;
    padding: 10px;
    margin-bottom: 2px;
    font-size: 1.4rem;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2370AE06'><path d='M9.29 6.71a1 1 0 0 0 0 1.41L13.17 12l-3.88 3.88a1 1 0 1 0 1.41 1.41l4.59-4.59a1 1 0 0 0 0-1.41L10.7 6.7a1 1 0 0 0-1.41.01z'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
  }

  .nav-links a:hover {
    background: #70AE06;
    color: white;
  }

  .nav-links a:hover::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9.29 6.71a1 1 0 0 0 0 1.41L13.17 12l-3.88 3.88a1 1 0 1 0 1.41 1.41l4.59-4.59a1 1 0 0 0 0-1.41L10.7 6.7a1 1 0 0 0-1.41.01z'/></svg>");
  }

  .hamburger {
    display: block;
  }

  .homepage-hero {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .homepage-hero-image.large,
  .homepage-hero-image.small {
    grid-column: span 1;
    height: 480px;
  }

  .overlay {
    bottom: 20px;
    left: 20px;
    max-width: 90%;
    padding: 10px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .footer .about-us,
  .footer .contact-us {
    grid-column: auto;
  }

  .notice-bar p {
    font-size: 0.6rem;
    line-height: 1em;
  }
}