/* Zig-Zag Layout */
.s-section {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  gap: 20px;
  margin-top: 500px;
}
.s-section:nth-child(even) {
  flex-direction: row-reverse;
  background: #fff;
}
.s-section:nth-child(odd) {
  background: #f0f0f0;
}
.s-image {
  flex: 1;
}
.s-image img {
  width: 100%;
  border-radius: 12px;
}
.s-text {
  flex: 1;
}