/* Spacing from above and below */
.section-padding {
  padding: 80px 0;
}

/* Card layout */
.card-style {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
  margin-bottom: 0px;
}

/* Flex columns */
.two-column-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Columns */
.column {
  flex: 1 1 48%;
}

/* Text styling */
.column-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.column-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.column-text ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 20px;
}

/* Image */
.solution-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Image caption */
.image-caption {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  color: #666;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #0057ff;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #003fcc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .two-column-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .column {
    flex: 1 1 100%;
  }

  .column-text ul {
    text-align: left;
  }
}



/* 2-column wrapper */
.two-column-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Stack on mobile */
  gap: 40px;
}

/* Columns */
.column {
  flex: 1 1 48%;
}

.column-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.column-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.column-text ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 20px;
}

.solution-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-caption {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  color: #666;
}

.btn-primary {
  display: inline-block;
  background: #0057ff;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #003fcc;
}
@media (max-width: 768px) {
  .two-column-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .column {
    flex: 1 1 100%;
  }

  .column-text ul {
    text-align: left;
  }
}
