/* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

/* === NAVIGATION === */
.navbar {
  width: 100%;
  background: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.navbar .logo {
  font-size: 22px;
  font-weight: bold;
  color: #0066cc;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  font-size: 16px;
  color: #222;
  transition: 0.3s;
}

.navbar a:hover {
  color: #0066cc;
}

/* === HERO SECTION === */
.hero {
  padding: 120px 20px;
  text-align: center;
  background: white;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 750px;
  margin: auto;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0066cc;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #004a99;
}

/* === ABOUT SECTION === */
.about {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

.about p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
}

/* === PRICING SECTION === */
.pricing {
  padding: 90px 20px 160px; /* extra bottom padding */
  background: #f0f0f0;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.card ul li {
  margin-left: 18px;
  margin-bottom: 8px;
}

/* === CONTACT SECTION === */
.contact {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.contact form {
  max-width: 420px;
  margin: auto;
  margin-top: 20px;
}

.contact input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #bbb;
  font-size: 17px;
}

.contact button {
  width: 100%;
  padding: 14px;
  background: #0066cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: #004a99;
}

#feedback {
  font-size: 16px;
  margin-top: 12px;
}

/* === FOOTER === */
footer {
  padding: 25px;
  text-align: center;
  background: #333;
  color: white;
  margin-top: 40px;
}
