#tailor-and-lease {
  padding: 40px 20px;
  background: linear-gradient(120deg, #313552, #27293d);
  background-size: 200% 200%;
  animation: gradient-animation 10s ease infinite;
  color: #1e1e2f;
  text-align: center;
  max-width: 800px;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


#tailor-and-lease h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

#tailor-and-lease .intro {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.process-step {
  background: #27293d;
  color: #f4f4f9;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  flex: 1;
  min-width: 250px;
}

@media screen and (max-width: 768px) {
  .process {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

.process-step h3 {
  color: #48e5c2;
  margin-bottom: 10px;
}

.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th:nth-child(1),
.comparison-table td:nth-child(1) {
  width: 20%;
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  width: 40%;
}

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
  width: 40%;
}


.comparison-table th, .comparison-table td {
  border: 1px solid #12141f;
  padding: 10px;
}

.comparison-table th:first-child {
  background: transparent;
  border-top: none;
  border-left: none;
}



.comparison-table th {
  background: #313552;
  color: #f4f4f9;
}

.comparison-table td {
  background: #3e456b;
  color: white;
}

.comparison-table td i {
  color: #f4f4f9;
}
.comparison-table td:first-child {
  color: #48e5c2;
  background: #313552;
  font-weight: bold;

}

.comparison-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .comparison-table {
    display: none;
  }

  .comparison-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #313552;
    border-radius: 10px;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-header .header-card {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 10px;
    text-align: center;
    color: white;
    background-color: #27293d;
    border-radius: 10px;
    font-weight: bold;
  }

  .mobile-section-title {
    color: #48e5c2;
    text-align: center;
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: bold;
  }

  .mobile-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-content .content-card {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 10px;
    text-align: center;
    background-color: #3e456b;
    color: white;
    border-radius: 10px;
  }
}




.process-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta {
  margin: 2rem;
}



.intro span {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
