:root {
  --primary: #dc2626;
  --secondary: #f8fafc;
  --accent: #059669;
  --dark: #0f172a;
  --light: #f8fafc;
  --gradient: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}
.navbar-brand img { height: 45px; }

.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  transition: color 0.3s;
  margin: 0 0.5rem;
}

.nav-link:hover { color: var(--primary) !important; }

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.section {
  padding: 6rem 0;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(220, 38, 38, 0.2);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
}

.comparison-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.table th {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
}

.table td {
  padding: 1rem 1.5rem;
  border-color: #e2e8f0;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .section { padding: 4rem 0; margin-top: 3.1rem;}
  .pricing-card { padding: 2rem; }
  .pricing-card.featured { transform: none; }
}


/* Why Choose Section */
.why-choose {
  padding: 80px 20px;
  background-color: #f8f9fc;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.section-header p {
  font-size: 16px;
  color: #666;
}

/* Feature Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color:#b91c1c;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.pricing-why-best {
  padding: 80px 20px;
  background-color: #f8f9fc;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-why-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-why-header h2 {
  font-size: 34px;
  color: #222;
  margin-bottom: 10px;
}

.pricing-why-header p {
  font-size: 16px;
  color: #666;
}

.pricing-why-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.pricing-why-content strong {
  color: #b91c1c;
}
