/* === Solutions Section: Elegant and Cohesive with Projects === */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

#solutions-preview {
  background: linear-gradient(to bottom right, #f0faff, #ffffff);
  padding: 2.5rem 9rem ;
  font-family: 'Montserrat', sans-serif;
  color: #034078;
  max-width: 1500px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

#solutions-preview .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

/* Section Header */
#solutions-preview header.major {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 3.5rem;
  animation: fadeIn 1.2s ease;
}

#solutions-preview header.major h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #0077b6;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.2em;
  text-shadow: 0 0 5px #00c8f8;
}

#solutions-preview header.major p {

  font-family: 'Montserrat', sans-serif;
  font-weight: 500;  
padding-top: 2rem;
  font-size: 1.2rem;
  color: #034762;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Solution Cards */
#solutions-preview section.box {
  background: linear-gradient(145deg, #e6f8fc, #d7f1f7);
  border: 1px solid rgba(0, 180, 220, 0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow:
    0 4px 18px rgba(0, 119, 182, 0.1),
    inset 0 0 14px rgba(0, 220, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 750px;
    margin: 0 auto;
  text-align: left; /* was center */  
  overflow: hidden;
  font-weight: 600; /* Medium-bold */
  margin-bottom: 2.5rem;
  padding: 1rem 1.5rem; /* reduce top/bottom padding for shorter height */


}

#solutions-preview section.box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0, 119, 182, 0.15),
    0 0 18px rgba(200, 251, 255, 0.25);
}

/* Images & Videos */
.solution-img,
.solution-video {
  width: 90%;             /* smaller width relative to container */
  max-width: 500px;       /* optional: cap the width */
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 16 / 9;   /* keeps the ratio, adjust if needed */
  margin: 0 auto 1rem;    /* center horizontally and smaller bottom margin */
  box-shadow: 0 6px 14px rgba(0, 112, 179, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.solution-img:hover,
.solution-video:hover {
  transform: scale(1.03);
}

/* Card Titles */
#solutions-preview h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  color: #023047;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

/* Descriptions */
#solutions-preview section.box p {
  font-family: 'Montserrat', sans-serif;
  color: #045061;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* CTA Button */
#solutions-preview .button.primary {
  background: #0077b6;
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(0, 119, 182, 0.3);
  cursor: pointer;
  align-self: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

#solutions-preview .button.primary:hover {
  background: #005f8a;
  box-shadow: 0 0 20px rgba(0, 119, 182, 0.5);
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  #solutions-preview header.major h2 {
    font-size: 2rem;
  }

  #solutions-preview header.major p {
    font-size: 1rem;
  }

  #solutions-preview .container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}
.tag-soon {
  display: inline-block;
  background: linear-gradient(135deg, #6bbaff, #2875c2);
  color: #ccf6f5;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.75em;
  border-radius: 999px;
  margin-left: 0.5rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 8px rgba(191, 244, 249, 0.35);
  animation: pulseTag 2.5s ease-in-out infinite;
}

/* Subtle pulse animation */
@keyframes pulseTag {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(134, 246, 239, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(157, 245, 239, 0.5);
  }
}



.water-box {
  background: #f9fcfe;
  border-radius: 16px;
  padding: 2rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(3, 64, 120, 0.1);
  font-family: 'Montserrat', sans-serif;
  color: #034078;
}

.water-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a86c1;
  margin-bottom: 1.8rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.solution-list {
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin: 0;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  line-height: 1.5;
  color: #045061;
  font-weight: 500;
}

.solution-list li::before {
  content: "•"; /* custom bullet */
  color: #0077b6;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 12px;
  margin-top: 4px; /* vertical align with text */
  flex-shrink: 0;
}

.solution-list li strong {
  flex: 0 0 280px; /* fixed width for titles */
  font-weight: 600;
  color: #023047;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

.solution-list li:not(:last-child) {
  border-bottom: 1px solid rgba(3, 64, 120, 0.1);
  padding-bottom: 1rem;
}

@media (max-width: 600px) {
  .solution-list li {
    flex-direction: column;
  }

  .solution-list li strong {
    flex: none;
    margin-bottom: 0.4rem;
    text-transform: none;
  }

  .solution-list li::before {
    margin-top: 0.3rem;
  }
}

/* Shared Box Styles */
.box {
  background: #f9fcfe;
  border-radius: 16px;
  padding: 2rem;
  max-width: 720px;
  margin: 2rem auto;
  box-shadow: 0 10px 25px rgba(3, 64, 120, 0.1);
  font-family: 'Montserrat', sans-serif;
  color: #034078;
}

/* Water Box Specific */
.water-box h3,
.energy-box h3,
.box:not(.water-box):not(.energy-box) > h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #0077b6;
  margin-bottom: 1.8rem;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
}

/* "Coming Soon" tag */
.tag-soon {
  background: #3594f9;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  margin-left: 0.7rem;
  vertical-align: middle;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Video styling */
.solution-video {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 14px rgba(0, 112, 179, 0.15);
  object-fit: cover;
}

/* List shared styles */
.water-box ul,
.energy-box ul,
.box:not(.water-box):not(.energy-box) ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.water-box li,
.energy-box li,
.box:not(.water-box):not(.energy-box) li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  line-height: 1.5;
  color: #045061;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding-left: 1.2rem;
}

/* Custom bullet */
.water-box li::before,
.energy-box li::before,
.box:not(.water-box):not(.energy-box) li::before {
  content: "•";
  color: #0077b6;
  font-size: 1.4rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

/* Strong styling */
.water-box li strong,
.energy-box li strong,
.box:not(.water-box):not(.energy-box) li strong {
  flex: 0 0 280px;
  font-weight: 700;
  color: #023047;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-right: 0.5rem;
}

/* Divider line between list items except last */
.water-box li:not(:last-child),
.energy-box li:not(:last-child),
.box:not(.water-box):not(.energy-box) li:not(:last-child) {
  border-bottom: 1px solid rgba(3, 64, 120, 0.1);
  padding-bottom: 1rem;
}

/* Paragraph styling for community box */
.box:not(.water-box):not(.energy-box) p {
  font-weight: 500;
  font-size: 1rem;
  color: #045061;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .water-box li,
  .energy-box li,
  .box:not(.water-box):not(.energy-box) li {
    flex-direction: column;
    padding-left: 0;
  }
  
  .water-box li strong,
  .energy-box li strong,
  .box:not(.water-box):not(.energy-box) li strong {
    flex: none;
    margin-bottom: 0.4rem;
    text-transform: none;
  }
  
  .water-box li::before,
  .energy-box li::before,
  .box:not(.water-box):not(.energy-box) li::before {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 0.3rem;
  }
}
/* ========= Responsive Media Queries for Solutions Section ========= */

@media (max-width: 768px) {
  #solutions-preview {
    padding: 3rem 1.5rem 5rem;
  }

  #solutions-preview header.major h2 {
    font-size: 1.5rem;
  }

  #solutions-preview header.major p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  #solutions-preview h3 {
    font-size: 1.2rem;
  }

  #solutions-preview section.box {
    padding: 1.5rem 1.2rem;
  }

  .solution-img,
  .solution-video {
    aspect-ratio: 16 / 10;
    margin-bottom: 1.2rem;
  }

  #solutions-preview section.box p {
    font-size: 0.95rem;
  }

  #solutions-preview .button.primary {
    font-size: 0.9rem;
    padding: 0.6rem 1.3rem;
  }

  .water-box h3,
  .energy-box h3,
  .box:not(.water-box):not(.energy-box) > h3 {
    font-size: 1.5rem;
  }

  .water-box li strong,
  .energy-box li strong,
  .box:not(.water-box):not(.energy-box) li strong {
    font-size: 0.95rem;
  }

  .solution-list li,
  .box ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  #solutions-preview header.major h2 {
    font-size: 1.3rem;
  }

  #solutions-preview header.major p {
    font-size: 1rem;
    line-height: 1.5;
  }

  #solutions-preview h3 {
    font-size: 1.05rem;
  }

  #solutions-preview section.box {
    padding: 1.2rem 1rem;
  }

  .solution-img,
  .solution-video {
    aspect-ratio: 16 / 11;
    border-radius: 12px;
  }

  #solutions-preview section.box p {
    font-size: 0.85rem;
  }

  #solutions-preview .button.primary {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }

  .solution-list li,
  .box ul li {
    flex-direction: column;
    font-size: 0.9rem;
    padding-left: 0;
  }

  .solution-list li strong,
  .box li strong {
    flex: none;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: none;
  }

  .solution-list li::before,
  .box li::before {
    position: relative;
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 420px) {
  #solutions-preview {
    padding: 2.5rem 1rem 4rem;
    
  }

  #solutions-preview header.major h2 {
    font-size: 1.1rem;
  }

  #solutions-preview header.major p {
    font-size: 0.95rem;
  }

  #solutions-preview h3 {
    font-size: 1rem;
  }

  #solutions-preview section.box {
    padding: 1rem 0.8rem;
  }

  .solution-img,
  .solution-video {
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
  }

  #solutions-preview section.box p {
    font-size: 0.8rem;
  }

  #solutions-preview .button.primary {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .water-box h3,
  .energy-box h3,
  .box:not(.water-box):not(.energy-box) > h3 {
    font-size: 1.25rem;
  }

  .solution-list li,
  .box ul li {
    font-size: 0.85rem;
  }

  .solution-list li strong,
  .box li strong {
    font-size: 0.85rem;
  }
}

.request-section {
  text-align: center;
  margin-top: 0;        /* remove default margin */
  padding: 3rem 2rem; /* normal positive padding inside */
  background: linear-gradient(180deg, rgba(0, 10, 20, 0.8), rgba(0, 0, 0, 0.95));
  color: #fff;
}


.request-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-color, #00aaff);
  margin-bottom: 1rem;
}

.request-section p {
  max-width: 850px;
  margin: 0 auto 2rem;
  color: #ccc;
  line-height: 1.6;
  font-size: 1.1rem;
}

.request-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.request-section .cta-btn {
  background: var(--accent-color, #00aaff);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.request-section .cta-btn:hover {
  background: #0088cc;
}

.request-section .closing-line {
  margin-top: 2rem;
  font-size: 1rem;
  color: #aaa;
}

.request-section .closing-line a {
  color: var(--accent-color, #00aaff);
  text-decoration: underline;
}
/* === Request a Service / Solutions Section === */
#request-service-solutions {
  max-width: 1000px;
  margin: 3rem auto;                /* centers section with spacing */
  padding: 2.5rem 2rem;             /* tight but not cramped */
  background: #f5fbff;              /* light, elevated background */
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 112, 179, 0.12); /* subtle lift */
  text-align: center;
  font-family: 'Poppins', 'Inter', sans-serif;
  color: #1a1a1a;
}

#request-service-solutions h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.7rem;
  color: #005b8c;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 4px #027997;
}

#request-service-solutions p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #034762;
}

#request-service-solutions .request-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Base elevated button style */
.cta-btn {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* subtle elevation */
  cursor: pointer;
}

/* Button 1: Water Project */
/* Base elevated button style */
.cta-btn {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* subtle elevation */
  cursor: pointer;
}

/* Button 1: Water Project */
.request-buttons a:nth-child(1) {
  background: #0077b6;
  color: #fff;
}
.request-buttons a:nth-child(1):hover {
  background: #005c91;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,92,145,0.35);
}

/* Button 2: Energy Optimization */
.request-buttons a:nth-child(2) {
  background: #00a676;
  color: #fff;
}
.request-buttons a:nth-child(2):hover {
  background: #007a52;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,122,82,0.35);
}

/* Button 3: Smart Monitoring */
.request-buttons a:nth-child(3) {
  background: #c8834b;
  color: #fff;
}
.request-buttons a:nth-child(3):hover {
  background: #d87e3b;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216,126,59,0.35);
}

/* Button 4: See How It Works */
.see-how-buttons .cta-btn {
  background: transparent;
  color: #04325e;
  margin-bottom: 1.5rem; /* keep the spacing below */
  margin-top: -0.8rem;
}
.see-how-buttons .cta-btn:hover {
  background: #aed1fb;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(129, 176, 243, 0.35);
}

/* Flex containers for spacing */
.request-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.see-how-buttons {
  text-align: center;
  margin-bottom: 1.5rem;
}
/* Solution Cards: Same Size as REQUEST A CUSTOM SOLUTION */
#solutions-preview section.box {
  max-width: 1000px;           /* same width */
  padding: 1.8rem 1.8rem; /* slightly smaller padding to shrink space inside box */
  margin: 3rem auto;           /* same spacing */
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 112, 179, 0.12); /* same elevation */
  background: linear-gradient(145deg, #e6f8fc, #d7f1f7); /* optional gradient */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Titles & Paragraphs inside box */
#solutions-preview h3 {
  margin-bottom: 1rem;  /* slightly tighter */
}

#solutions-preview section.box p {
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
/* List items (if any) */
#solutions-preview section.box li {
  margin-bottom: 0.8rem;  /* less space between bullet points */
  line-height: 1.4;
}

#solutions-preview {
  margin-bottom: 1rem; /* reduce space below */
  padding-bottom: 2rem; /* adjust padding */
}





/* ========= Responsive Media Queries for Solutions Section ========= */

/* Tablet and small desktop */
@media (max-width: 768px) {
  #solutions-preview {
    padding: 3rem 1.5rem 5rem;
  }

  #solutions-preview header.major h2 {
    font-size: 1.8rem;
  }

  #solutions-preview header.major p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  #solutions-preview h3 {
    font-size: 1.2rem;
  }

  #solutions-preview section.box {
    padding: 1.5rem 1.2rem;
  }

  .solution-img,
  .solution-video {
    aspect-ratio: 16 / 10;
    margin-bottom: 1.2rem;
  }

  #solutions-preview section.box p {
    font-size: 0.95rem;
  }

  #solutions-preview .button.primary {
    font-size: 0.9rem;
    padding: 0.6rem 1.3rem;
  }

  .water-box h3,
  .energy-box h3,
  .box:not(.water-box):not(.energy-box) > h3 {
    font-size: 1.5rem;
  }

  .water-box li strong,
  .energy-box li strong,
  .box:not(.water-box):not(.energy-box) li strong {
    font-size: 0.95rem;
  }

  .solution-list li,
  .box ul li {
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #solutions-preview header.major h2 {
    font-size: 1.7rem;
  }

  #solutions-preview header.major p {
    font-size: 1rem;
    line-height: 1.5;
  }

  #solutions-preview h3 {
    font-size: 1.05rem;
  }

  #solutions-preview section.box {
    padding: 1.2rem 1rem;
  }

  .solution-img,
  .solution-video {
    aspect-ratio: 16 / 11;
    border-radius: 12px;
  }

  #solutions-preview section.box p {
    font-size: 0.85rem;
  }

  #solutions-preview .button.primary {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }

  .solution-list li,
  .box ul li {
    flex-direction: column;
    font-size: 0.9rem;
    padding-left: 0;
  }

  .solution-list li strong,
  .box li strong {
    flex: none;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: none;
  }

  .solution-list li::before,
  .box li::before {
    position: relative;
    margin-bottom: 0.3rem;
  }
}

/* Extra small mobile */
@media (max-width: 420px) {
  #solutions-preview {
    padding: 2.5rem 1rem 4rem;
  }

  #solutions-preview header.major h2 {
    font-size: 1.4rem;
  }

  #solutions-preview header.major p {
    font-size: 0.95rem;
  }

  #solutions-preview h3 {
    font-size: 1rem;
  }

  #solutions-preview section.box {
    padding: 1rem 0.8rem;
  }

  .solution-img,
  .solution-video {
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
  }

  #solutions-preview section.box p {
    font-size: 0.8rem;
  }

  #solutions-preview .button.primary {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .water-box h3,
  .energy-box h3,
  .box:not(.water-box):not(.energy-box) > h3 {
    font-size: 1.25rem;
  }

  .solution-list li,
  .box ul li {
    font-size: 0.85rem;
  }

  .solution-list li strong,
  .box li strong {
    font-size: 0.85rem;
  }
}


/* Reduce gap between sections */
#solutions-preview {
  padding-top: 2rem;    /* smaller top padding */
  padding-bottom: 3rem; /* smaller bottom padding */
}

#solutions-preview section.box {
  margin-bottom: 1.5rem; /* reduce spacing between boxes */
  padding: 1rem 1rem;    /* slightly smaller padding inside each box */
}

/* Reduce header spacing */
#solutions-preview header.major {
  margin-bottom: 1.5rem; /* less space below the header */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #solutions-preview {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  #solutions-preview section.box {
    margin-bottom: 1rem;
    padding: 0.9rem 0.8rem;
  }

  #solutions-preview header.major {
    margin-bottom: 1rem;
  }
}

@media (max-width: 420px) {
  #solutions-preview {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  #solutions-preview section.box {
    margin-bottom: 0.8rem;
    padding: 0.8rem 0.6rem;
  }

  #solutions-preview header.major {
    margin-bottom: 0.8rem;
  }
}
