/* Build Section - Reduced Vertical Padding for Web/Desktop */

/* Desktop and larger screens - reduce vertical padding */
@media screen and (min-width: 1024px) {
  .build-section {
    padding: 4rem 4rem !important; /* Reduced from 8rem to 4rem vertical */
  }
}

/* Large desktop */
@media screen and (min-width: 1440px) {
  .build-section {
    padding: 5rem 5rem !important; /* Reduced from 10rem to 5rem vertical */
  }
}

/* Extra large screens */
@media screen and (min-width: 1920px) {
  .build-section {
    padding: 5.5rem 6rem !important; /* Reduced from 11rem to 5.5rem vertical */
  }
}

/* Medium screens */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .build-section {
    padding: 3.5rem 3rem !important; /* Reduced from 7rem to 3.5rem vertical */
  }
}

/* Keep mobile padding as is (already reasonable) */
@media screen and (max-width: 767px) {
  /* Mobile padding stays the same - no changes needed */
}