.csr-modern-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding-inline: 16px;
}

.csr-modern-container {
  width: 100%;
  max-width: 1392px;
  margin: 0 auto;
}

/* Add alternating background colors */
.csr-modern-section:nth-child(odd) {
  background: #ffffff;
}

.csr-modern-section:nth-child(even) {
  background: #f8f9fa;
}

/* Add section padding and border */
.csr-modern-section:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.csr-modern-header {
  margin-bottom: 60px;
  width: 100%;
}

.csr-modern-title {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #ad2324;
  margin: 0 0 30px 0;
}

.csr-modern-intro {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  margin: 0 0 30px 0;
}

.csr-modern-section-title {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
  color: #ad2324;
  margin: 50px 0 20px 0;
}

.csr-modern-paragraph {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  opacity: 0.85;
  margin: 0 0 25px 0;
}

.csr-modern-button {
  display: inline-block;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  background-color: #ad2324;
  padding: 16px 30px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.csr-modern-button:hover {
  background-color: #8c1c1d;
}

.csr-modern-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

/* Add styles for sections with images */
.csr-modern-section-image {
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.csr-modern-section-image .csr-modern-container {
  flex: 1;
  max-width: 60%;
}

.csr-image-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.csr-modern-section-image img {
  flex: 1;
  max-width: 40%;
  height: 380px;
  object-fit: cover;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .csr-modern-section {
    padding: 70px 50px;
  }

  .csr-modern-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .csr-modern-section {
    padding: 60px 40px;
  }

  .csr-modern-title {
    font-size: 38px;
  }

  .csr-modern-intro {
    font-size: 18px;
  }

  .csr-modern-section-title {
    font-size: 24px;
  }

  .csr-modern-section-image {
    flex-direction: column;
    gap: 40px;
  }

  .csr-modern-section-image .csr-modern-container {
    max-width: 100%;
  }

  .csr-modern-section-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .csr-modern-section {
    padding: 50px 30px;
  }

  .csr-modern-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .csr-modern-intro {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .csr-modern-section-title {
    font-size: 22px;
    margin: 40px 0 15px 0;
  }

  .csr-modern-paragraph {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .csr-modern-section {
    padding: 40px 20px;
  }

  .csr-modern-title {
    font-size: 30px;
  }

  .csr-modern-intro {
    font-size: 16px;
  }

  .csr-modern-section-title {
    font-size: 20px;
  }

  .csr-modern-paragraph {
    font-size: 15px;
  }

  .csr-modern-button {
    padding: 14px 25px;
    font-size: 15px;
  }
}
