 body {
     font-family: "Poppins", sans-serif;
     color: #7a7a7a;
     background-color: white;
     margin: 0;
     padding: 0;
 }

 /* Section Heading */
 .section-heading {
     font-size: 32px;
     font-weight: 500;
     color: #2a2a2a;
     text-align: center;
     margin-bottom: 12px;
     font-family: Georgia, serif;
 }

 .section-underline {
     width: 90px;
     height: 3px;
     background-color: #d59246;
     margin: 0 auto 30px auto;
 }

 /* Design Philosophy Text */
 .design-description {
     font-size: 14px;
     font-weight: 300;
     line-height: 1.7;
     color: #999999;
     text-align: start;
     padding: 20px;
 }

 /* Specification Section */
 .specification-section {
     background-color: #f9f9f9;
     padding: 60px 15px;
 }

 /* Spec Columns */
 .spec-columns {
     margin: 0 auto;
     display: flex;
     gap: 30px;
     justify-content: center;
 }

 .spec-column {
     flex: 1;
 }

 /* Spec Rows */
 .spec-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 15px;
     margin-bottom: 15px;
     font-size: 14px;
     border-radius: 0;
 }

 /* Rows with white background */
 .spec-row.highlight {
     background-color: white;
 }

 /* Label text */
 .spec-label {
     font-weight: 600;
     color: #3d3d3d;
     min-width: 130px;
     text-align: left;
 }

 /* Value text */
 .spec-value {
     font-weight: 300;
     color: #a3a3a3;
     text-align: right;
 }



 
    /* Masonry container using CSS columns */
   
    .masonry-container {
      /* max-width: 1200px; */
      margin: 0 auto 60px;
      padding: 0 15px;
      column-count: 4;
      column-gap: 15px;
    }

    .masonry-item {
      break-inside: avoid;
      margin-bottom: 15px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    }

    .masonry-item img {
      width: 100%;
      display: block;
      border-radius: 6px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .masonry-item:hover img {
      transform: scale(1.05);
    }

    /* Responsive columns */
    @media (max-width: 1200px) { .masonry-container { column-count: 3; } }
    @media (max-width: 768px) { .masonry-container { column-count: 2; } }
    @media (max-width: 576px) { .masonry-container { column-count: 1; } }
 /* Responsive */
 @media (max-width: 768px) {
     .spec-columns {
         flex-direction: column;
         gap: 20px;
     }

     .spec-row {
         justify-content: flex-start;
         gap: 10px;
     }

     .spec-value {
         text-align: left;
         max-width: none;
     }
 }