/* General Layout */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
  background-color: #fff;
}



/* Header */

header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

/* This class will be toggled via JavaScript */
header.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}




header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff; /* Ensure background covers content behind */
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 40px;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.btn-primary {
  background-color: #1877f2;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background-color: #0047ab;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-logo {
  width: 100px;
}

.hero h1 {
  color: #ffa500;
  font-size: 2.2rem;
}

.hero-buttons button {
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.hero-buttons .start {
  background-color: #ffd700;
  color: #000;
}

.hero-buttons .learn {
  background-color: #fcd303;
  color: #000;
}

/* Features Section */
.features-section {
  padding: 2rem;
  background: #f5f7fa;
  text-align: center;
}

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

.feature {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.feature img {
  margin-bottom: 0.5rem;
}

.feature h3 {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

a.feature {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* Campaign Section */
.campaign-section {
  padding: 2rem;
  text-align: center;
}

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

/* Pricing Section */
.pricing-section {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #fff;
}

.pricing-box {
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  background-color: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}

.badge {
  background-color: #eaf0ff;
  color: #0047ab;
  font-weight: bold;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.price-highlight {
  font-size: 2.5rem;
  color: #1877f2;
}

.features-list, .addons {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.features-list li, .addons li {
  margin: 0.25rem 0;
}

.promo-image {
  margin-top: 2rem;
  width: 100%;
  max-width: 500px;
}

/* Form Section */
.form-section {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #f5f5f5;
}

.form-section form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-section input,
.form-section textarea,
.form-section select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-section button {
  width: 100%;
  background-color: #1877f2;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Footer Section */
/* Footer */
.footer {
  background-color: #0c0e12;
  color: #fff;
  padding: 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 2rem;
  border-top: 1px solid #222;
  padding-top: 1rem;
}







/* Responsive */
@media (max-width: 768px) {
  .features-grid, .campaign-grid {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .pricing-box,
  .form-section form {
    padding: 1.5rem 1rem;
  }
}
