/* 
==================================
 TABLE OF CONTENTS:
==================================
 1. CSS Reset & Base Styles
 2. Typography
 3. Layout & Container
 4. Utility Classes
 5. Buttons & Interactive Elements
 6. Section-Specific Styles
    - Hero Section
    - Four Core Pillars
    - Impact Section
    - DSIC Section
    - News Section
    - Sustainability Report
    - HVAC Brands
    - Career Section
 7. Media Queries
==================================
*/

/* ============================
   1. CSS Reset & Base Styles
============================== */
body {
  margin: 0;
  line-height: inherit;
  font-family: FrutigerLTPro;
  font-style: normal;
}

/* ============================
   2. Typography
============================== */
.jumbo {
  font-size: 114px;
  line-height: 25px;
}

.heading_1 {
  font-size: 50px;
  line-height: 55px;
}

.heading_2 {
  font-size: 40px;
  line-height: 51px;
}

.heading_3 {
  font-size: 30px;
  line-height: 55px;
}

.heading_4 {
  font-size: 30px;
  line-height: 25px;
}

.heading_5 {
  font-size: 25px;
  line-height: normal;
}

.heading_6 {
  font-size: 20px;
  line-height: 23px;
}

.body_copy {
  font-size: 20px;
  line-height: 25px;
}

.body_copy_2 {
  font-size: 20px;
  line-height: 34px;
}

.body_3 {
  font-size: 16px;
  line-height: 23px;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

/* ============================
   3. Layout & Container
============================== */
.container {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 16px;
}

.mt-2 {
  margin-top: 0.5rem;
}

.flex {
  display: flex;
}

.h-4 {
  height: 16px;
}

.w-36 {
  width: 9rem;
}

.w-4 {
  width: 16px;
}

.w-full {
  width: 100%;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-8 {
  gap: 2rem
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-48 {
  gap: 12rem;
}

.p-8 {
  padding: 2rem;
}

/* ============================
   4. Utility Classes
============================== */
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:font-bold:hover {
  font-weight: 600;
}

.hover\:text-black:hover {
  color: #000 !important;
}

.hover\:text-blue-500:hover {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

.hover\:text-blue-600:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.bg-fpbutton {
  --tw-bg-opacity: 1;
  background-color: #E0E4E6;
}

.bg-black3 {
  background-color: #1C2022;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 1s;
}

/* ============================
   5. Buttons & Interactive Elements
============================== */
.button {
  padding: 15px 40px;
}

.hero-animation .ani {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.video-control-btn {
  position: absolute;
  right: 20px;
  bottom: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
  transition: opacity 0.3s;
}

.video-control-btn:hover {
  opacity: 0.8;
}

.dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.dropdown.open {
  max-height: 200px;
}

.dropdown a {
  font-size: 18px;
  line-height: 25px;
}

.learn-more {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 20px;
  line-height: 1.5625rem;
}

.learn-more:hover {
  text-decoration: underline;
}

/* ============================
   6. Section-Specific Styles
============================== */

/* Hero Section */
.navigation .nav__item--parent .submenu {
  z-index: 1;
}

.home_hero_section .block-text-image__headline {
  margin-bottom: 12px;
}

.home_hero_section div.w-full.flex {
  margin-bottom: 20px;
}

/* Four Core Pillars */
.pillars-section {
  position: relative;
  padding: 10rem 2rem;
  background: url('imgs/FourPillarsBG.png') center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pillars-container {
  position: relative;
  max-width: 1195px;
  margin: 0 auto;
  background: rgb(255 255 255 / 95%);
  padding: 7.5rem 5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pillars-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #333;
}

.pillars-content {
  display: flex;
  gap: 2rem;
}

.desktop-content {
  flex: 1;
  display: none;
}

.tabs {
  flex: 0 0 308px;
}

.tab-button {
  width: 100%;
  padding: 45px 24px;
  margin-bottom: 14px;
  text-align: left;
  background: #E0E4E6;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.tab-button .right-arrow {
  margin-left: 9px;
}

.tab-button.active {
  background: #0097E0;
  color: white;
}

.tab-button.active svg.laptop\:hidden {
  transform: rotate(180deg);
}

.tab-button svg.laptop\:hidden {
  transition: all 0.1s ease;
}

.tab-button:not(.active) {
  background: #E0E4E6 !important;
  color: #000 !important;
}

.tab-button:hover:not(.active) {
  background: #0097E0;
  color: white;
}

.tab-content {
  flex: 1;
  background: #0097E0;
  color: white;
  overflow: hidden;
  padding: 64px 53px 56px 16px;
  display: none;
}

.tab-content.active {
  display: block;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: 97%;
}

.tab-content h2 {
  font-size: 2.5rem;
  line-height: normal;
  margin-bottom: 16px;
}

.tab-content p {
  margin-bottom: 40px;
}

/* Impact Section */
.impact-section {
  position: relative;
  padding: 39rem 2rem 6rem;
  color: white;
  background-image: url('imgs/OurImpactBG.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgb(0 20 36 / 0%) 40%, rgb(0 20 36 / 80%), rgb(0 20 36));
}

.impact-content {
  position: relative;
  max-width: 1296px;
  margin: 0 auto;
  width: 100%;
}

.impact-title {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  font-weight: 600;
}

.stats-container {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.stats-slider {
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: flex;
  transition: transform 1s ease;
}

.stat-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  display: flex;
  align-items: flex-start;
  line-height: normal;
}

.next-arrow {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 16px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.next-arrow:hover {
  opacity: 0.8;
}

.arrow-icon {
  position: absolute;
  right: 0rem;
  top: 40%;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 2.9375rem;
  color: white;
}

.impact-carousel {
  position: relative;
  height: 646px;
  width: 100%;
  overflow: hidden;
  background-image: url('imgs/OurImpactBG.png');
  background-size: cover;
  background-position: top;
}

.impact-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgb(0 20 36 / 0%) 40%, rgb(0 20 36 / 80%), rgb(0 20 36));
}

.carousel-headline {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
}

.carousel-container {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 6rem 2rem;
}

.carousel-slide {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  color: white;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.impact-carousel .stat-number {
  font-size: 6rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.impact-carousel .plus-sign {
  font-size: 3rem;
  margin-left: 0.25rem;
  margin-top: -0.5rem;
}

.impact-carousel .stat-label {
  font-size: 2rem;
  opacity: 0.9;
}

.carousel-nav {
  position: absolute;
  top: 60%;
  transform: translateY(-45%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 16px;
  z-index: 10;
}

.nav-prev {
  left: 0rem;
}

.nav-next {
  right: 0rem;
}

.nav-icon {
  width: 2rem;
  height: 2rem;
  stroke-width: 2;
}

/* DSIC Section */
.dsic-section {
  background-color: #0097E0;
  color: white;
  padding: 10.375rem 2rem 6rem;
  overflow: hidden;
}

.dsic-container {
  max-width: 1296px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.dsic-container .image-grid-wrap {
  right: -9rem;
  width: 55%;
}

.dsic-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.dsic-title span {
  display: block;
}

.dsic-description {
  margin-bottom: 2rem;
}

.dsic-cta {
  margin-bottom: 2rem;
}

.dsic-link {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.dsic-link:hover {
  opacity: 0.8;
}

.dsic-link svg {
  margin-left: 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
}

.dsic-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}

.dsic-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* News Section */
.news-section {
  padding: 10.375rem 0;
  max-width: 1296px;
  margin: 0 auto;
}

.section-title {
  color: #00A0E9;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.featured-article {
  position: relative;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
}

.featured-content {
  background: #0097E0;
  color: white;
  padding: 0.75rem 1.5rem 16px;
}

.featured-title {
  margin-bottom: 0.25rem;
}

.featured-description {
  margin-bottom: 0.5rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.divider-line {
  background-color: #0097E0;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: -1.5rem;
}

.news-thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.news-content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-title {
  color: #00A0E9;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.news-date {
  color: #6c6c6c;
}

.read-more {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.read-more svg {
  margin-left: 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
}

.see-more-news {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.see-more-link {
  color: #00A0E9;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.see-more-link svg {
  margin-left: 0.75rem;
  width: 1.2rem;
  height: 1.2rem;
}

/* Sustainability Report */
.sustainability-report .block-text-image.block-text-image--image-right {
  background-color: #0097E0;
  padding: 80px 0;
  margin: 0;
}

.sustainability-report h2 {
  margin-bottom: 4px;
}

.sustainability-report .block-text-image__content {
  background-color: transparent;
  border: none;
}

.block-text-image__card {
  border-radius: 0;
  overflow: visible;
}

.block-text-image__image {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2), 
                0px 5px 15px rgba(0, 0, 0, 0.15);
}

/* HVAC Brands */
.ourhvac {
  padding-top: 172px;
  padding-bottom: 172px;
}

.ourhav .container {
  max-width: 1297px;
}

.ourhvac .right-column {
  justify-content: space-evenly;
}

.otherlogo_goodman {
  max-width: 128px;
}

.otherlogo_amana {
  max-width: 99px;
}

.otherlogo_aaf {
  max-width: 137px;
}

.w-27p {
  width: 26%;
}

/* Daikin Career */
.home_comfort_pillar {
  margin-top: 0;
}

.home_comfort_pillar:is(.home_comfort_pillar--light),
.home_comfort_pillar:is(.home_comfort_pillar--dark) {
  padding-top: 0;
}

.home_comfort_pillar:is(.home_comfort_pillar--single-image) .image-grid-wrap {
  top: 0;
}

.home_comfort_pillar:is(.home_comfort_pillar--dark):before {
  background: none;
}

div#comfort-pillar-anchor {
  padding: 164px 0 212px;
  max-width: 548px;
}

div#comfort-pillar-anchor.dsic {
  max-width: none;
  padding: 164px 0 120px;
}

.home_comfort_pillar:is(.home_comfort_pillar--single-image) .image-grid:after {
  display: none;
}

/* ============================
   7. Media Queries
============================== */

/* Mobile Devices (up to 480px) */
@media (max-width: 480px) {
  /* Typography adjustments */
  .heading_1 {
    font-size: 24px;
    line-height: 28px;
  }
  
  .heading_2 {
    font-size: 35px;
    line-height: 44px;
  }
  
  .heading_3 {
    font-size: 16px;
    line-height: 18px;
  }
  
  .heading_4 {
    font-size: 25px;
    line-height: 25px;
  }
  
  .heading_6 {
    font-size: 16px;
    line-height: 18px;
  }
  
  .body_copy {
    font-size: 16px;
    line-height: 25px;
  }
  
  .body_copy_2 {
    font-size: 16px;
    line-height: 29px;
  }
  
  .body_3 {
    font-size: 10px;
    line-height: 23px;
  }
  
  /* Hero section */
  .home_hero_section .block-text-image__headline {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  
  .home_hero_section .video {
    aspect-ratio: 500 / 440;
  }
  
  /* Pillars section */
  .pillars-section {
    position: relative;
    padding: 10rem 2rem;
  }
  
  .pillars-container {
    padding: 3.5rem 1.5rem !important;
    border-radius: 14px;
  }
  
  .pillars-header {
    margin-bottom: 50px !important;
  }
  
  .tab-button {
    padding: 25px 0 !important;
    margin-bottom: 12px !important;
    justify-content: center !important;
  }
  
  .tab-content {
    padding: 24px !important;
  }
  
  .tab-content .icon-title {
    align-items: center;
  }
  
  .tab-content h2 {
    font-size: 25px !important;
    line-height: 25px !important;
    margin-bottom: 0 !important;
    font-weight: 600;
  }
  
  .tab-content p {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    margin-bottom: 1.5rem !important;
    margin-top: 0.75rem;
  }
  
  .tab-content a {
    font-size: 16px;
    line-height: 25px;
  }
  
  /* DSIC section */
  .dsic-container .image-grid-wrap {
    right: 0 !important;
  }
  
  .dsic-title {
    font-size: 35px;
    line-height: 38px;
  }
  
  .dsic-description {
    line-height: 25px;
    font-size: 16px;
  }

  .dsic-content {
    max-width: 100%;
    padding-right: 2rem;
  }
  
  .dsic-section {
    padding: 3rem 2rem !important;
  }
  
  .dsic-learnmore-img-container {
    margin-left: -2rem;
    width: 100vw;
    text-align: center;
  }
  
  .dsic-learnmore-img-container .image-grid-wrap {
    width: 100vw;
  }
  
  /* News section */
  .news-grid {
    gap: 3rem !important;
  }
  
  .news-section {
    padding: 3rem 2rem 4rem !important;
  }
  
  .news-section .section-title {
    font-size: 35px;
    margin-bottom: 12px;
  }
  
  .news-section .featured-content {
    padding: 10px 20px 5px;
  }
  
  .news-section .featured-content .featured-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .news-section .featured-content .featured-description {
    font-size: 10px;
    margin-bottom: 0;
  }
  
  .news-item {
    grid-template-columns: 93px 1fr;
  }
  
  .news-thumbnail {
    width: 93px;
    height: 80px;
  }
  
  .news-list .see-more-news a {
    font-size: 14px;
  }
  
  /* Impact carousel */
  .impact-carousel .stat-number {
    font-size: 162px;
    font-weight: 600;
  }
  
  .impact-carousel .plus-sign {
    font-size: 50px;
  }
  
  .impact-carousel .stat-label {
    font-size: 33px;
    line-height: 46px;
  }
  
  .arrow-icon {
    display: none;
  }
  
  /* HVAC brands */
  .otherlogo_goodman {
    max-width: 162px;
  }
  
  .otherlogo_amana {
    max-width: 129px;
  }
  
  .otherlogo_aaf {
    max-width: 147px;
  }
  
  /* Two column section */
  #twocol-txtimg .twocolContainer {
    display: flex;
    flex-direction: column;
  }
  
  #twocol-txtimg .container.block {
    order: 2;
  }
  
  #twocol-txtimg .image-grid-wrap {
    order: 1;
  }
  
  .twocolContainer .learn-more {
    font-size: 14px;
    line-height: 24px;
  }
  
  /* Comfort pillar */
  div#comfort-pillar-anchor {
    padding: 40px 0 !important;
    text-align: left;
    max-width: 100%;
  }
  
  /* Video control */
  .video-control-btn {
    bottom: 20px;
    right: 33px;
  }
  
  .video-control-btn svg {
    width: 18px;
    height: 18px;
  }
  
  /* Utilities */
  .divider-line {
    display: none;
  }
  
  .featured-title {
    font-size: 16px;
    margin-bottom: 0.25rem;
    font-weight: 700;
  }
  
  .featured-description {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.5625rem;
  }
  
  .read-more {
    font-size: 12px;
  }
  
  .block-text-image__content {
    padding: 0 16px;
  }
  
  .block-text-image--image-right .block-text-image__image {
    order: initial;
  }
  
  .additional-resources-bottom-cta {
    margin: 0 auto;
  }
}

/* Tablet Devices (481px to 991px) */
@media (max-width: 991px) {
  /* Typography */
  .heading_1 {
    font-size: 24px;
    line-height: 28px;
  }
  
  .heading_3 {
    font-size: 16px;
    line-height: 18px;
  }
  
  /* Utilities */
  .mobile\:hidden {
    display: none !important;
  }
  
  .tablet\:hidden {
    display: none !important;
  }
  
  .w-27p {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 20px;
  }
  
  /* Hero section */
  .home_hero_section h2 {
    margin-bottom: 15px;
  }
  
  .home_hero_section div.w-full.flex {
    margin-bottom: 20px;
  }
  
  /* Pillars section */
  .pillars-container {
    padding: 3.5rem 3rem;
  }
  
  .pillars-header {
    margin-bottom: 50px !important;
  }
  
  .tab-button {
    padding: 25px 0 !important;
    margin-bottom: 12px !important;
    justify-content: center !important;
  }
  
  .tab-content {
    padding: 24px 40px;
  }
  
  .tab-content h2 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 0;
    font-weight: 600;
  }
  
  .tab-content p {
    margin-top: 24px;
    margin-bottom: 24px !important;
    line-height: 25px;
  }
  
  .tab-content a {
    font-size: 16px;
    line-height: 24px;
  }
  
  .content-icon {
    margin-right: 4px;
  }
  
  /* DSIC section */
  .dsic-content h2 {
    line-height: 38px;
  }
  
  .dsic-description {
    line-height: 25px;
  }
  
  .dsic-learnmore-img-container {
    text-align: center;
  }
  
  .dsic-section {
    padding: 4rem 5rem;
  }
  
  .dsic-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  /* Sustainability section */
  .sustainability-report h2 {
    margin-bottom: 34px !important;
  }
  
  .sustainability-report .body_copy_2 {
    width: 100%;
  }
  
  .sustainability-report .button {
    font-size: 18px;
  }
  
  /* Two columns */
  .twocolContainer h2 {
    line-height: normal;
  }
  
  .twocolContainer p.body_copy_2 {
    margin-bottom: 40px;
  }
  
  /* Comfort pillar */
  div#comfort-pillar-anchor {
    padding: 40px 0 !important;
    text-align: left;
    max-width: 100%;
  }
  
  .home_comfort_pillar:is(.home_comfort_pillar--single-image) .image-grid img {
    aspect-ratio: auto;
  }
  
  /* HVAC section */
  .ourhvac {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  
  /* Layout */
  #twocol-txtimg .twocolContainer {
    display: flex;
    flex-direction: column;
  }
  
  #twocol-txtimg .image-grid-wrap {
    order: 1;
  }
  
  #twocol-txtimg .container.block {
    order: 2;
  }
  
  .block-text-image--image-right .block-text-image__image {
    order: initial;
  }
  
  .additional-resources-bottom-cta {
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .tabs {
    flex: none;
  }

  .pillars-content {
    flex-direction: column;
  }

  .tab-button.active + .tab-content {
    display: block;
    margin-bottom: 16px;
    margin-top: 16px;
    justify-items: center;
  }

  .icon-title.flex.gap-1 {
    justify-content: center;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .see-more-news {
    justify-content: center;
    text-decoration: underline;
  }

  .news-section {
    padding: 4rem 5rem;
  }

  .news-section h2.section-title {
    font-size: 35px;
  }

  .news-content {
    align-self: center;
  }

  .divider-line {
    display: none;
  }

}

/* Tablet Devices (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* DSIC section */
  .dsic-container .image-grid-wrap {
    right: 0 !important;
    width: 100vw !important;
  }
  
  .dsic-content {
    padding-right: 5rem;
  }
  
  .dsic-learnmore-img-container {
    width: 100vw;
    margin-left: -5rem;
  }
  
  /* HVAC section */
  .ourhvac {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  
  /* Layout */
  .w-27p {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  
  /* Hero section */
  .home_hero_section .panel {
    height: calc(66vh - 115px);
  }
  
  /* Impact carousel */
  .carousel-container {
    padding: 6rem 5rem;
  }
  
  .nav-prev {
    left: 5rem;
  }
  
  .nav-next {
    right: 5rem;
  }
}

/* Medium Tablet Landscape (900px to 1024px) */
@media (min-width: 900px) and (max-width: 1024px) {
  .pillars-section {
    min-height: 66vh;
  }
}

@media (min-width: 900px) and (max-height: 900px) {
  .home_hero_section .panel {
    min-height: 900px;
  }
}

@media (min-width: 920px) and (max-width: 1400px) {
  .news-section {
    padding: 10.375rem 5rem;
  }
}

@media (min-width: 920px) and (max-width: 1300px) {
  .ourhvac .right-column {
    flex-direction: column;
  }
  .w-27p {
    width: 50%;
  }
}

/* Desktop (min-width: 1025px) */
@media (min-width: 1025px) {
  .desktop-content {
    display: block !important;
  }
  
  .tabs .tab-content {
    display: none !important;
  }
}

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
  .lg\:w-1\/4 {
    width: 25%;
  }
  
  .lg\:w-2\/5 {
    width: 40%;
  }
  
  .lg\:w-3\/5 {
    width: 60%;
  }
  
  .lg\:gap-16 {
    gap: 4rem;
  }
  
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:items-center {
    align-items: center;
  }
  
  .lg\:justify-between {
    justify-content: space-between;
  }

  /* Pillars section */
  .pillars-section {
    padding: 10rem 5rem;
  }
}

@media (min-width: 1025px) and (max-width: 1400px) {
  .news-section {
    padding: 10.375rem 5rem;
  }
}

/* Large Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
  .sustainability-report .block-text-image__image {
    grid-column: span 7 / span 7;
  }
  
  .sustainability-report .block-text-image__content {
    grid-column: span 5 / span 5;
    padding-left: 0;
    padding-right: 6rem;
  }
}

/* Container Breakpoints (standardized) */
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}