/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  color: #222;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn {
  background: #333;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
}

.hero {
  background: linear-gradient(to right, #007cf0, #00dfd8);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #fff;
  color: #007cf0;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #f1f1f1;
}

.features {
  padding: 4rem 0;
  text-align: center;
}

.features h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pricing {
  padding: 4rem 0;
  text-align: center;
}

.pricing h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.pricing-box {
  background: white;
  display: inline-block;
  padding: 2rem;
  margin: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 250px;
}

.pricing-box.recommended {
  border: 2px solid #007cf0;
}

.pricing-box h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-box ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.pricing-box li {
  margin-bottom: 0.5rem;
}

.contact {
  padding: 4rem 0;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input, .contact textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
