/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f8;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 50px 10%;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Navigation */
nav {
  background-color: #2c3e50;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

nav a {
  color: white;
  margin: 10px 20px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #34495e;
}

/* Main Content */
main {
  padding: 50px 10%;
}

section {
  margin-bottom: 60px;
}

h2 {
  color: #2c3e50;
  font-size: 2em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #3498db;
  margin-top: 5px;
  border-radius: 2px;
}

h3 {
  color: #34495e;
  margin-top: 15px;
}

p, li {
  font-size: 1em;
  line-height: 1.7;
}

ul {
  margin-left: 20px;
}

/* Card Styles */
.card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin: 25px 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 15px;
  transition: background 0.3s;
}

.btn:hover {
  background: linear-gradient(135deg, #2980b9, #3498db);
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 30px 10%;
  font-size: 0.95em;
}

/* Pricing Plans */
h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #007bff;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.card ul li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
  color: #444;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-size: 14px;
}

.fee {
  font-weight: bold;
  color: #e63946;
  font-size: 1.1rem;
}

.extra {
  margin-top: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.extra h3 {
  color: #007bff;
  margin-bottom: 15px;
}

.extra ul li {
  margin: 6px 0;
}

/* Responsive Fix */
@media (max-width: 768px) {
  header {
    padding: 30px 5%;
  }

  main {
    padding: 20px 5%;
  }

  nav {
    flex-direction: row-reverse;
    align-items: center;
  }

  nav a {
    margin: 8px 0;
    font-size: 1.1em;
  }

  .plans {
    grid-template-columns: 1fr; /* Mobile pe ek card ek line me */
  }

  .card {
    padding: 20px;
    margin: 15px 0;
  }

  h2 {
    font-size: 1.6em;
  }

  header h1 {
    font-size: 2em;
  }

  header p {
    font-size: 1em;
  }
}
