.feature-comparison {
  padding: 50px 0;
  background-color: #f7f9fb;
  font-family: "Inter", sans-serif;
}

.fc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.fc-header {
  text-align: center;
  margin-bottom: 60px;
}

.fc-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.fc-header p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.fc-card {
  background: #fff;
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.fc-table {
  width: 100%;
  border-collapse: collapse;
}

.fc-table th {
  text-align: left;
  padding: 20px 15px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
}

.fc-table th:not(:first-child) {
  text-align: center;
}

.fc-table td {
  padding: 20px 15px;
  font-size: 16px;
  color: #555;
  border-bottom: 1px solid #f9f9f9;
}

.fc-table tr:last-child td {
  border-bottom: none;
}

.fc-table td:not(:first-child) {
  text-align: center;
}

.checkmark {
  color: #00a0dc;
  font-size: 18px;
  font-weight: 700;
}

.fc-footer-row td {
  padding-top: 40px;
}

.fc-btn-trial {
  display: inline-block;
  background-color: #3065af;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fc-btn-trial:hover {
  background-color: #193358;
  transform: translateY(-2px);
}

.fc-btn-buy {
  display: inline-block;
  background-color: #fff;
  color: #00a0dc;
  padding: 15px 40px;
  border: 2px solid #00a0dc;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fc-btn-buy:hover {
  background-color: #00a0dc;
  color: #fff;
  transform: translateY(-2px);
}
.desk-icon {
  display: block;
}
.mob-icon {
  display: none;
}

/* Responsiveness */
@media (max-width: 991px) {
  .feature-comparison {
    padding: 60px 0;
  }

  .fc-card {
    padding: 30px 15px;
    border-radius: 20px;
  }

  .fc-table th {
    font-size: 15px;
    padding: 15px 8px;
  }

  .fc-table td {
    font-size: 13px;
    padding: 12px 8px;
  }

  .fc-btn-trial,
  .fc-btn-buy {
    padding: 10px 15px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .fc-header h2 {
    font-size: 24px;
  }

  .fc-header p {
    font-size: 14px;
  }

  .fc-table {
    min-width: 0;
    /* Remove min-width to prevent forced scroll */
  }

  .fc-table th,
  .fc-table td {
    padding: 10px 5px;
    font-size: 11px;
    /* Smaller text for mobile */
  }

  .fc-table th:first-child,
  .fc-table td:first-child {
    width: 45%;
    /* Give more space to feature description */
  }

  .checkmark {
    font-size: 14px;
  }

  .fc-footer-row td {
    padding-top: 20px;
  }

  .fc-btn-trial,
  .fc-btn-buy {
    padding: 8px 10px;
    font-size: 10px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .fc-header h2 {
    font-size: 20px;
  }
  .desk-icon {
    display: none;
  }
  .mob-icon {
    display: block;
  }

  .fc-table th,
  .fc-table td {
    font-size: 10px;
    letter-spacing: -0.2px;
  }

  .fc-card {
    padding: 20px 10px;
  }
}
