/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
  background: #f7f7f7;
  line-height: 1.6;
}

img {
  width: 100%;
  border-radius: 6px;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #000;
  padding: 15px 0;
}

header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #ff7a00;
  font-size: 22px;
  font-weight: bold;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: #ff7a00;
}

/* Hero Section */
.hero {
  padding: 50px 0;
  background: #fff;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-text h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-text p {
  margin-bottom: 20px;
}

.btn-primary {
  background: #ff7a00;
  color: #fff;
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #e46a00;
}

/* Features */
.features {
  padding: 50px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 25px;
}

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

.card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

/* Modules */
.modules {
  padding: 50px 0;
  background: #fff;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.module {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 6px;
}

.module h3 {
  margin-bottom: 10px;
}

/* Pricing */
.pricing {
  padding: 50px 0;
}

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

.price-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.price-card.popular {
  border: 2px solid #ff7a00;
}

.price {
  font-size: 22px;
  color: #ff7a00;
  margin: 15px 0;
}

/* Contact */
.contact {
  padding: 50px 0;
  background: #fff;
}

.contact-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact ul {
  list-style: none;
}

.contact li {
  margin: 8px 0;
}

/* Footer */
footer {
  background: #000;
  padding: 15px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}

header {
  background: #000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.3);
}


/* Responsive Layout */
@media (max-width: 768px) {
  .hero-content,
  .contact-grid {
    flex-direction: column;
    text-align: center;
  }

  nav {
    display: none; /* For simplicity */
  }
}
