body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #91C8E4;
  color: #333;
}

header {
  background: #002b4b;
  color: white;
  text-align: center;
  padding: 2rem;
}

.logo {
  border-radius: 50%;
  width: 100px;
  height: auto;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 0.7rem 1.2rem;
  margin-top: 1rem;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
}

.packages {
  padding: 2rem;
}

.packages input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.package {
  background: white;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.package a {
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
}

footer {
  background: #ecf0f1;
  text-align: center;
  padding: 1rem;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

table th, table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

table th {
  background-color: #2c3e50;
  color: white;
}

table a {
  background: #25D366;
  color: white;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead {
    display: none;
  }

  td {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
  }
}

.packages {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.packages h2 {
  text-align: center;
}

#searchInput {
  width: 100%;
  padding: 0.8rem;
  margin: 1rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.package-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.package-card h3 {
  margin-top: 0;
  color: #2c3e50;
}

.package-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #27ae60;
  margin: 1rem 0;
}

.package-card a {
  background-color: #25D366;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.social-link i {
  font-size: 20px;
}

/* Özel renkler */
.social-link.whatsapp {
  background-color: #25D366;
}

.social-link.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-link.tiktok {
  background-color: #000000;
}

/* Hover efekti */
.social-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.package-card h3 {
  background-color: #0065a2;
  color: white;
  padding: 10px;
  border: 2px solid #00a8ff;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}