/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 1rem 10%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  font-weight: 500;
}
.btn {
  background: #ffc107;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn:hover {
  background: #e0a800;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5% 10%;
  background: linear-gradient(to right, #fff3cd, #ffeeba);
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-image {
  max-width: 400px;
}

/* Plans Section */
.plans-section {
  padding: 5% 10%;
  background: #fff;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.plan-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.plan-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-5px);
}
.price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffc107;
}
.price span {
  font-size: 0.8rem;
  color: #666;
}
.plan-card ul {
  list-style: none;
  margin: 1rem 0;
}
.plan-card li {
  margin: 0.5rem 0;
}
.plan-btn {
  display: inline-block;
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  padding: 5% 10%;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}
.feature-box img {
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  padding: 5% 10%;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item h4 {
  color: #333;
}

/* Contact Section */
.contact-section {
  text-align: center;
  padding: 5% 10%;
  background: #fff3cd;
}
.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.large-btn {
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background: #e9ecef;
  color: #666;
}