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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 20px;
  background: linear-gradient(90deg, #8b0000, #8e44ad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-decoration: none; /* Link altı çizgisini kaldırır */
}

.logo span {
  color: #ff4d6d;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a001a, #330033, #4d0026);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  text-align: center;
  padding: 80px 20px;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff4d6d;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.chat-button {
  padding: 15px 30px;
  background: linear-gradient(90deg, #ff4d6d, #c71585);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.chat-button:hover {
  background: linear-gradient(90deg, #ff1a4d, #a31268);
}

/* CONTENT */
.content {
  background-color: #1a1a1a;
  padding: 60px 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  color: #cccccc;
  line-height: 1.7;
}

.container h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ff4d6d;
  text-align: center;
}

.container p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

/* FOOTER */
.footer {
  background: linear-gradient(90deg, #33001a, #4d0033);
  color: #f2f2f2;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff4d6d;
}
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
}
  .comparison-table {
    width: 95%;
    max-width: 900px;
    margin: 30px auto; /* Ortalamak için auto */
    border-collapse: collapse;
    font-size: 16px;
    background-color: #1a1a1a;
    color: #f2f2f2;
  }

  .comparison-table th,
  .comparison-table td {
    border: 1px solid #fff; /* Çizgiler beyaz */
    padding: 15px;
    text-align: center;
  }

  .comparison-table th {
    background: linear-gradient(90deg, #8b0000, #8e44ad);
    color: #fff;
  }

  @media screen and (max-width: 600px) {
    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table th,
    .comparison-table td,
    .comparison-table tr {
      display: block;
      width: 100%;
    }

    .comparison-table thead tr {
      display: none;
    }

    .comparison-table td {
      text-align: left;
      padding-left: 50%;
      position: relative;
      border: 1px solid #fff; /* Mobilde de beyaz çizgiler */
    }

    .comparison-table td::before {
      content: attr(data-label);
      position: absolute;
      left: 15px;
      top: 15px;
      font-weight: bold;
      color: #ff4d6d;
    }
  }


