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

body {
  font-family: Arial, sans-serif;
  background: #111827;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #0b1220;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #d1d5db;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.profile-card {
  background: #1f2937;
  padding: 35px 25px;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  margin-bottom: 18px;
}

.profile-card h1 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.profile-card p {
  color: #cbd5e1;
  margin-bottom: 24px;
}

.link-tree {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-btn {
  display: block;
  text-decoration: none;
  background: #374151;
  color: #ffffff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.link-btn:hover {
  background: #4b5563;
  transform: translateY(-2px);
}

.page-content {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-box {
  background: #1f2937;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.content-box h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.content-box p {
  margin-bottom: 14px;
  color: #d1d5db;
  line-height: 1.6;
}

.content-box a {
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pricing-card {
  background: #374151;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
}

.pricing-card h2 {
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffffff;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.schedule-table th,
.schedule-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-table th {
  background: #374151;
}

footer {
  text-align: center;
  padding: 18px;
  background: #0b1220;
  color: #9ca3af;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.pricing-note {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: center;
}

.pricing-note p {
  margin: 5px 0;
  color: #d1d5db;
}

.time {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #9ca3af;
}
.pricing-card {
  background: #374151;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: 0.25s ease;
  display: block;
}

.pricing-card:hover {
  background: #4b5563;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}