@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.custom-section {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.custom-section h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2em;
  color: #fff;
  background-color: #b83012;
  padding: 40px;
  font-weight: 400;
  text-transform: uppercase;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .custom-section h2 {
    padding: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

.custom-section > p {
  margin: 0 0 20px 0;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.custom-section > p:last-child {
  margin-bottom: 0;
}

.custom-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.custom-item img {
  width: 500px;
  height: 500px;
  max-width: 500px;
  max-height: 500px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 768px) {
  .custom-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .custom-item img {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 500px;
  }
}

.custom-text {
  flex: 1;
  color: #333333;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.custom-text h3 {
  font: 900 24px 'Roboto', sans-serif;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  color: #8a9a2a;
}

.custom-text p {
  margin: 0 0 20px 0;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.custom-text p:last-child {
  margin-bottom: 0;
}