/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #3e3e6f);
  color: #f0f0f5;
  min-height: 100vh;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: rgba(10,10,10,0.9);
  padding: 1rem 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  z-index: 999;
}

header .logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5c518;
}

header .logo span {
  color: #fff;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

nav a:hover,
nav a.active {
  background-color: #f5c518;
  color: #111;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 1rem 5rem;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.4rem;
  color: #ddd;
  margin-bottom: 2rem;
  font-weight: 500;
}

.btn-primary {
  background-color: #f5c518;
  color: #111;
  font-weight: 700;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 15px #f5c518aa;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #d4b30a;
  box-shadow: 0 6px 20px #d4b30aaa;
}

/* Pricing Section */
.pricing {
  margin-bottom: 5rem;
  text-align: center;
}

.pricing h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.plan {
  background-color: rgba(255 255 255 / 0.07);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 300px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.5);
  color: #f0f0f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: default;
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(245,197,24,0.6);
}

.plan.featured {
  border: 3px solid #f5c518;
  background-color: rgba(245,197,24,0.1);
  box-shadow: 0 12px 30px rgba(245,197,24,0.7);
  cursor: default;
}

.plan h4 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: #f5c518;
}

.price {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #f5c518;
  font-family: 'Poppins', sans-serif;
}

.plan ul {
  list-style: none;
  margin-bottom: 2rem;
  width: 100%;
  text-align: left;
}

.plan ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  padding-left: 1.2rem;
  position: relative;
  font-weight: 500;
  color: #ddd;
}

.plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f5c518;
  font-weight: 900;
}

/* Buttons on plans */
.btn-secondary {
  padding: 0.7rem 1.8rem;
  background-color: #f5c518;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 4px 15px #f5c518aa;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #d4b30a;
  box-shadow: 0 6px 20px #d4b30aaa;
}

/* Page Content */
.page-content {
  max-width: 800px;
  margin: 4rem auto 6rem;
  background-color: rgba(255 255 255 / 0.07);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  color: #eee;
}

.page-content h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f5c518;
}

/* Contact Lists */
.page-content ul {
  list-style: none;
  padding-left: 0;
}

.page-content ul li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ddd;
}

.page-content ul li a {
  color: #f5c518;
  text-decoration: none;
}

.page-content ul li a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: rgba(10,10,10,0.9);
  text-align: center;
  padding: 1.8rem 1rem;
  font-size: 1rem;
  color: #bbb;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  nav {
    justify-content: center;
  }
}
.page.about-box {
  background: rgba(255, 215, 0, 0.3); /* stronger gold tint */
  padding: 3rem 2.5rem;
  border-radius: 15px;
  max-width: 900px;
  margin: auto;
  color: #fff; /* white text */
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); /* stronger glow */
  line-height: 1.6;
}

.page.about-box h2, 
.page.about-box p, 
.page.about-box ul {
  margin-bottom: 1.5rem;
}

.page.about-box ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}
.page.about-box {
  background: rgba(255, 215, 0, 0.3);
  padding: 3rem 2.5rem;
  border-radius: 15px;
  max-width: 900px;
  margin: 3rem auto;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  line-height: 1.6;
}

.page.about-box h2,
.page.about-box p {
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.contact-list a {
  color: gold;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #fff;
  text-decoration: underline;
}