/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #FED16A;
  color: #000;
}

/* Header */
header {
  width: 100%;
  background-color: #000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ccc;
}

.signin-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signin-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* Page Title */
.page-title {
  text-align: center;
  padding: 80px 20px 40px;
}

.page-title h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-title p {
  font-size: 1.2rem;
  color: #555;
}

/* Pricing Section */
.pricing-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px 80px;
}

.pricing-card {
  background-color: #000;
  color: #fff;
  width: 300px;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.pricing-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.pricing-card ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.pricing-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

.pricing-card .book-btn {
  text-decoration: none;
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pricing-card .book-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

.pricing-card:hover {
  transform: translateY(-10px);
  background-color: #222;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ccc;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #fff;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-section {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
