* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.custom-service-section {
  padding: 40px 0;
}

.custom-service-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.custom-service-item .custom-service-text {
  flex: 1;
  padding: 15px;
}

.custom-service-item h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.custom-service-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.custom-service-item .custom-cta-btn {
  display: inline-block;
  background-color: #ff0202;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 15px;
}

.custom-service-item .custom-service-img {
  flex: 1;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-service-item .custom-service-img img {
  width: 100%;

}

@media (min-width: 768px) {
  .custom-service-item {
    flex-direction: row;
    justify-content: space-between;
  }

.section-title {
  font-size: 35px;
  font-weight: 600;
  color: #2e74b7;
  margin-bottom: 30px;
  text-align: center;
  word-spacing: -2px;
  margin-bottom: 48px;
}
  .custom-service-item .custom-service-text {
    flex: 0 0 48%;
  }

  .custom-service-item .custom-service-img {
    flex: 0 0 48%;
  }
}