/* Section layout */
.platform-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 120px;
}

/* Card design */
.platform-card {
  flex: 1;
  text-align: center;
  padding: 25px 15px;
  background: #f5f5f5;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

/* Icon style */
.platform-card i {
  font-size: 36px;
  color: #6c757d; /* gray tone */
  margin-bottom: 10px;
  display: block;
}

/* Text */
.platform-card span {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Hover effect */
.platform-card:hover {
  background: #e9ecef;
  transform: translateY(-5px);
}

.platform-card:hover i {
  color: #495057;
}

/* Responsive (small screens) */
@media (max-width: 768px) {
  .platform-section {
    flex-direction: column;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .platform-card {
    border-radius: 0;
    border-bottom: 1px solid #ddd;
  }

  .platform-card:last-child {
    border-bottom: none;
  }
}
.section-line {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 120px 120px;
}

.mt-container1 {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .mt-content1 {
    text-align: center;
  }

  .mt-content1 h2 {
    font-size: 2rem;
    color: #ffffff;
  }

  .mt-content1 p {
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-cta-visual {
    order: -1;
  }

  .footer-cta-content {
    max-width: 100%;
  }

  .footer-cta-content h2 {
    font-size: 1.125rem;
    text-align: center;
  }

  .footer-cta-button {
    width: fit-content;
    align-self: center;
  }
