.config-form {
    width: 700px;
    display:flex;
    flex-direction:column;
    margin: auto;
    margin-top:30px;
    align-items: center;
}

.config-form label {
    display: block;
    margin-top: 15px;
}

.option-block-windows {
    border: 1px solid #ccc;
    margin-top: 20px;
    cursor: pointer;
    width:100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius:5px;
}

canvas {
    border: 1px solid #ccc;
    background-color:white;
    border-radius:7px;
    padding:20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.canvas-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.price-output {
    font-size: 1.3rem;
    text-align: center;
}

.price-output span {
    font-weight:bold;
    font-size:1.3rem;
}

.add-cart-btn {
    padding: 15px 25px;
    background-color: #b99c7b;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    margin: 25px;
    cursor:pointer;
    border-radius:5px;
}

.add-cart-btn:hover {
    background-color:#c29058;
}
  
.option-block {
    border: 1px solid #ccc;
    margin-top: 20px;
    cursor: pointer;
}

.option-header {
    padding: 10px 20px 10px 20px;
    background: #ffffff;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .option-header .option-title {
    flex: 1;
    font-weight: bold;
  }
  
  .option-preview {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: contain;
    border: 1px solid #c1c1c1;
  }

.option-body {
    display:none;
    padding: 30px;
    background: #fff;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.option-body p {
  margin-top:0;
}

.option-choice.selected {
    border: 3px solid #494949;
    background-color: #ffffff;
}


.option-choice {
    width: 140px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 8px;
    transition: 0.2s;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.option-choice:hover {
    transform: scale(1.05);
    border-color: #333;
}

.option-choice img {
    max-width: 100%;
    height: auto;
    border: 1px solid lightgrey;
    border-radius:5px;
}

.window-container {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width: 1320px;
    padding: 20px;
    box-sizing: border-box;
}

.window-type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.window-type-grid a {
  text-decoration: none;
  color:black;
}

.window-type-option {
    width: 180px;
    cursor: pointer;
    border-radius: 7px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    transition: transform 0.2s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.window-type-option a {
  text-decoration: none;
}

.window-type-option img {
    max-width: 100%;
    height: auto;
}

.window-type-option:hover {
    transform: scale(1.05);
    border-color: #333;
}

.layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 1320px;
    padding: 20px;
    box-sizing: border-box;
}

.layout-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top:20px;
}

.layout-option {
    width: 180px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 7px;
    background-color: white;
    padding: 10px;
    text-align: center;
    transition: transform 0.2s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.layout-option img {
    max-width: 100%;
    height: auto;
}

.layout-option:hover {
    transform: scale(1.05);
    border-color: #333;
}

.window-type-label {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
}

.cart-container {
    width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top:30px;
}

.cart-item {
    border: 1px solid #ccc;
    padding: 40px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 5px;
    flex-direction:row;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cart-preview {
    width: 200px;
    flex-shrink: 0;
}

.cart-preview img {
    max-width: 100%;
}

.cart-details {
    flex-grow: 1;
    margin-left:30px;
}

.cart-details p {
    margin: 0 0 12px 0;
}

.remove-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius:5px;
}

.remove-btn:hover {
    background: #2c2c2c;
}

.cart-total {
    text-align: right;
    font-size: 1.3rem;
}

.add-window-btn {
    background-color: #b99c7b;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s ease;
    width: 300px;
    text-align: center;
    margin-bottom: 20px;
    border:none;
}

#totalPrice {
    font-weight:bold;
    font-size:1.3rem;
}

.add-window-btn:hover {
    background-color: #796753;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 50px;
}
  
.gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s;
}
  
.gallery img:hover {
    transform: scale(1.03);
}
  
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
  
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}
  
.lightbox .close, .lightbox .prev, .lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
  
.lightbox .close {
    top: 20px;
    right: 30px;
    transform: none;
    font-size: 2.5rem;
}
  
.lightbox .prev {
    left: 30px;
}
  
.lightbox .next {
    right: 30px;
}
  
.main-content-area-bgcolor{
      background-color: white;
}
  
.paragraph {
    margin-bottom: 20px;
    line-height: 1.6;
}
  
.hidden-image {
    display: none;
}
  
.show-more-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgb(185, 156, 122);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    left: 0;
}

.dimension-input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  
  .dimension-field {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    align-items: center;
  }
  
  .dimension-field label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
  }
  
  .dimension-field input {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 180px;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 1px 4px;
    transition: border-color 0.2s;
    text-align:center;
  }
  
  .dimension-field input:focus {
    outline: none;
    border-color: #0073e6;
  }
  
  #dimensionLimits {
    color: #666;
    margin-bottom:20px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  
  .inquryFormButton {
    text-align: right; 
    margin-top: 20px;
  }
  
  .styledherobanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  height: 340px;
  background-color: rgb(0, 72, 145, 0.80);
  z-index: 10;
}

.styledherobanner-text {
    margin: 0;
    padding: 3.5rem 5.6875rem 5rem 19rem;
}

.styledherobanner-text h1 {
    color: white;
    margin: 0 auto;
    text-align: left;
}

.styledherobanner-text h2 {
    color: white;
    margin: 20px auto;
    text-align: left;
    font-weight: bold;
}

.styledherobanner-text p {
    color: white;
    margin: 20px auto;
    text-align: left;
    line-height: 1.5;
}

.video-place {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  margin: 0 auto;
  margin-top: 40px;
  width: 1200px;
}

.video-container {
  flex: 1 1 50%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

.video-text-container {
  flex: 1 1 50%;
  max-width: 900px;
  text-align: left;
  margin-left: 32px;
}

.video-text-container h1, h2 {
    font-size: 1.9rem; 
}
.video-text-container h2 {
    font-size: 1rem;
    font-weight: bold;
}
.video-text-container p {
  font-size: 1rem;
}

.linear-benefits {
  text-align: center;
  padding: 40px 20px;
  width: 1000px;
  margin: 0 auto;
}

.linear-benefits h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.benefit-item {
  max-width: 250px;
  text-align: center;
}

.benefit-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.benefit-item h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 1rem;
  color: #555;
}

.benefit-icon svg {
  display: block;
  margin: 0 auto 15px auto;
}

.design-language {
  width: 1200px;
  margin: 0 auto;
}

.section {
  display: flex;
  align-items: center;
  margin: 40px 0;
  gap: 20px;
}

.section-image {
  width: 40%;
  max-width: 400px;
  object-fit: cover;
}

.section-text {
  width: 55%;
}

.left {
  order: 0;
}

.right {
  order: 1;
}

.section-1 .section-image.left {
  order: 0;
}

.section-1 .section-text.left {
  order: 1;
  padding-left: 30px;
}

.section-2 .section-image.right {
  order: 1;
}

.section-2 .section-text.left {
  order: 0;
  padding-right: 50px;
}

.section-3 .section-image.left {
  order: 0;
}

.section-3 .section-text.right {
  order: 1;
}

.section-text h1 {
    font-size: 2.5rem;
}

.windows-building {
  text-align: left;
  width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.windows-building h1 {
  margin-bottom: 20px;
  font-size: 2.3rem;
}

.windows-building p {
  margin-bottom: 30px;
  color: #555;
  font-size: 1rem;
}

.windows-building .windows-image {
  width: 100%;
  max-width: 1000px;
  border: 2px solid #ccc; /* subtle gray outline */
  border-radius: 4px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.windows-color-options-standard {
  text-align: left;
  padding: 20px;
  margin: 0 auto;
  width: 1000px; 
}

.windows-color-options-standard h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.windows-color-options-standard h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: rgb(0, 72, 145);
  font-weight: bold;
}

.color-images {
  display: flex;
  justify-content: left;
  gap: 2px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.color-images img {
  width: 150px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.color-images img:hover {
  transform: scale(1.1);
}

.windows-color-options-non-standard {
  text-align: left;
  padding: 20px;
  margin: 0 auto;
  width: 1000px; 
}

.windows-color-options-non-standard h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: rgb(0, 72, 145);
  font-weight: bold;
}

.windows-color-options-non-standard p {
    font-style: italic;
    font-size: 0.9rem;
}

.image-wrapper {
  position: relative;
  width: 150px;
  margin-bottom: 10px;
}

.image-wrapper img {
  width: 100%;
  height: 120px;
  display: block;
  border-radius: 3px;
}

.image-label {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px;
  font-size: 0.75rem;
  border-radius: 1px;
  line-height: 1;
}

.downloads-container {
  width: 1000px;
  margin: 0 auto;
  text-align: left;
  border-radius: 10px;
  padding: 20px;
  
}

.downloads-container h1 {
  font-size: 2.5rem;
  color: #000000;
}

.download-item {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.pdf-preview {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.pdf-preview:hover {
  transform: scale(1.02);
}

.download-caption {
  margin-top: 15px;
  font-size: 1rem;
  color: rgb(0, 72, 145);
  font-weight: bold;
}

.download-item img {
  height: 300px;
}

.main-header-windows,
.header-windows,
.shrinker-main {
  width: 100%;
}

.windows-new-top-menu-container {
  width:1320px;
  display:flex;
  flex-direction:row;
  align-items:center;
  height:100px;
  gap:15px;
  background-color:#3f4047;
  border-radius:5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-top:100px;
  justify-content: center;
}

.windows-top-button {
  display: inline-block;
  padding: 15px 25px;
  background-color:#b99c7b;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size:1.2rem;
  font-weight:400;
  border-radius:5px;
}

.windows-top-button:hover {
  background-color:#c29058;
}

.progress-container {
  margin: 30px auto 0;
  max-width: 700px;
  text-align: center;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  background: #3f4047;
  border-radius: 30px;
  padding: 10px;
  overflow: hidden;
}

.step {
  flex: 1;
  padding: 10px 5px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step.active {
  color: #fff;
  background: #b99c7b;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-buttons {
  margin-top: 20px;
}

.progress-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  background: #b99c7b;
  color: white;
  cursor: pointer;
}

.step.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
  color:white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-container {
  width: 100%;
  max-width: 1320px;
  margin: 100px auto;
  border-radius: 5px;
  background-color: #3f4047;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px;
  color: white;
  font-family: sans-serif;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #b99c7b;
  padding: 20px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.faq-header .arrow {
  transition: transform 0.3s ease;
}

.faq-container.open .faq-header .arrow {
  transform: rotate(180deg);
}

.faq-content {
  display: flex;
  padding: 20px;
  flex-direction:column;
}

.faq-container.open .faq-content {
  display: flex;
  flex-direction:column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 10px 0;
}

.faq-question .arrow {
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  margin-top: 5px;
  padding-left: 10px;
  color: #eee;
  font-size: 1rem;
}

.faq-item.open .faq-answer {
  display: flex;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(90deg);
}

.faq-answer-with-image {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.faq-answer-with-image .faq-text {
  flex: 1;
  min-width: 250px;
  color: #eee;
  font-size: 1rem;
}

.faq-answer-with-image .faq-image {
  flex: 1;
  min-width: 250px;
  text-align: right;
}

.faq-answer-with-image .faq-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.configure-price-info {
  margin-bottom:5px;
}

.cart-price-info {
  margin-bottom:5px;
  text-align:right;
}

.margin-cart-top-0 {
  margin-top:0;
}

.any-questions-p-headline {
  text-align: right;
  font-weight:600;
}

.any-questions-p {
  text-align: right;
    margin-bottom: 2px;
    margin-top: 0;
}

.any-questions-p a {
  text-decoration: none;
    color: black;
    font-weight: 500;
}

.faq-text p {
  margin-top:0;
  margin-bottom:5px;
}

.extra-windows {
  width: 100%;
  max-width: 900px; 
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.slider-track {
  display: flex;
  width: calc(300px * 20);
  animation: slide-left 40s linear infinite;
}

.extra-windows img {
  width: 300px;
  height: 200px;
  object-fit: contain; 
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 8px;
  background: white; 
  display: block;
}

.extra-windows h2 {
  font-size: 1.9rem;
}

.windows-info-btns {
    display:flex;
    position:absolute;
    top:350px;
    left:160px;
}

.windows-info-btn {
    background-color:rgb(0, 72, 145, 0.80);   
}

.windows-info-btn:hover {
    background-color:rgb(0, 72, 145, 1);   
}

.how-it-works-container {
  text-align: center;
  margin: 30px 0 0;
}

.how-it-works-button {
  background-color: #3f4047;
  color: white;
  padding: 12px 24px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.how-it-works-button:hover {
  background-color: #2f2f35;
}

.how-it-works-steps {
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.step-box {
  background-color: #3f4047;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 1rem;
  color: white;
}

.hidden {
  display: none;
}
.how-it-works-button {
  background-color: #3f4047;
  color: white;
  padding: 12px 24px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.how-it-works-button:hover {
  background-color: #2f2f35;
}

.arrow-icon {
  display: inline-block;
  transition: transform 0.2s ease;
}

.arrow-icon.rotate {
  transform: rotate(90deg);
}



@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 17));
  }
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }
  .section-image, .section-text {
    width: 100%;
    order: unset !important;
  }
  .section-text {
    margin-top: 20px;
  }
  
}

@media (max-width: 1100px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works-steps {
        margin-bottom: 30px;
    }
    
    .windows-info-btns {
        display: flex;
        position: static;
        width: 100%;
        justify-content: center;
        margin: 450px 10px 0px;
        gap: 10px;
    }
    
    .windows-info-btn {
        margin-right:0;   
    }
    
    .header-shring-window-info {
        height:600px;
    }

    .faq-container {
      width:90%;
    }
    
    .extra-windows h2 {
      font-size: 1.4rem;
      padding: 15px;
      margin-left: 10px;
    }

    .windows-new-top-menu-container {
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      padding: 10px 10px;
      height: auto;
      width: 100%;
      margin-top: 80px;
      width:95%;
    }

    .windows-new-top-menu-container a {
      margin:0;
    }
  
    .windows-top-button {
      flex: 0 0 calc(50% - 10px); 
      font-size: 1rem;
      padding: 12px 15px;
      text-align: center;
      box-sizing: border-box;
      height: 62px;
    }

    .progress-container {
      width:95%;
      margin: 10px auto 0;
    }

    .progress-bar a {
      margin:0;
    }
    
    .show-more-btn {
        display: block;
        margin: 0 auto;
        left: unset;
    }

    .downloads-container{
        width: 100%;
    }
    
    .window-type-grid {
        display:grid;
        flex-direction:column;
        grid-template-columns: repeat(2, 1fr);
    }

    .window-container {
        width:100%;
    }

    .window-type-option {
        width:100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .window-type-option p {
        text-align:center !important;
    }

    .layout-container {
        width:100%;
    }

    .layout-grid {
        display:grid;
        flex-direction:column;
        grid-template-columns: repeat(2, 1fr);
    }

    .layout-option {
        width:100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .layout-option p {
        text-align:center !important;
    }

    .config-form {
        width:95%;
    }

    .config-form h2 {
        text-align:center;
    }

    .cart-container {
        width:95%;
        margin-top:15px;
    }

    .cart-item {
        flex-direction:column;
    }

    .cart-details {
        width:85%;
        margin-left:0;
        margin-top:15px;
    }

    .cart-total {
        margin-top:30px;
        text-align:center;
    }

    .inquryFormButton {
        text-align:center;
    }
    
    .main-header-windows,
      .header-windows,
      .shrinker-main {
        width: 100%;
        margin: 0 auto;
      }

      .styledherobanner {
        display: flex;
        justify-content: center;
        margin: 120px 16px 0px;
        padding: 0;
        width: 330px;
      }

      .styledherobanner-text {
        padding: 30px 20px 20px 20px;
      }

      .styledherobanner-text h1 {
        font-size: 2rem;
      }

      .styledherobanner-text h2 {
        font-size: 1.5rem;
        font-weight: normal;
      }

      .styledherobanner-text p {
        font-size: 1rem;
      }

       .video-place {
       flex-direction: column;
       align-items: center;
       width: 100%;
       padding: 10px;
      }

      .video-container,
      .video-text-container {
      max-width: 100%;
      margin-left: 0;
      }

     .video-text-container {
      text-align: center;
      margin-top: 20px;
    }

      .video-text-container h1,
     .video-text-container h2,
     .video-text-container p {
     padding: 0 15px;
   }

  .linear-benefits {
    width: 100%;
    padding: 30px 15px;
  }

  .linear-benefits h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }

  .benefit-item {
    max-width: 90%;
  }

  .benefit-item img {
    width: 80px;
    height: 80px;
  }

  .benefit-item h2 {
    font-size: 1.1rem;
  }

  .benefit-item p {
    font-size: 0.95rem;
  }

  .design-language {
    width: 100%;
    padding: 0 15px;
  }

  .section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    margin: 30px 0;
  }

  .section-image,
  .section-text {
    width: 100%;
    max-width: 100%;
    order: unset !important;
    padding: 0 !important;  
  }

  .section-text h1 {
    font-size: 1.75rem;
  }

  .section-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .windows-building {
    width: 100%;
    padding: 0 15px;
    margin: 40px auto;
    text-align: left;
  }

  .windows-building h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .windows-building p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .windows-building .windows-image {
    width: 100%;
    height: auto;
    border-width: 1px;
  }

  .windows-color-options-standard,
  .windows-color-options-non-standard {
    width: 100%;
    padding: 15px;
  }

  .windows-color-options-standard h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .windows-color-options-standard h2,
  .windows-color-options-non-standard h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .windows-color-options-non-standard p {
    font-size: 0.85rem;
  }

  .color-images {
    justify-content: center;
    gap: 7px;
  }

  .color-images img {
    width: 160px;
  }

  .image-wrapper {
    width: 160px;
  }

  .image-wrapper img {
    height: auto;
  }

  .image-label {
    font-size: 0.65rem;
    padding: 4px;
  }

      .show-more-btn {
        display: block;
        margin: 0 auto;
        left: unset;
      }
}

