/* Base Styles */
body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: #1f2937;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Updated Navigation Styles - Fixes overflow issue */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #f9fafb;
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  box-sizing: border-box;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: bold;
  white-space: nowrap;
}

nav a:hover {
  color: #2563eb;
}

/* Button Styles */
.btn-primary {
  background-color: #2563eb;
  color: white !important;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  color: white !important;
}

.btn-outline {
  padding: 0.5rem 1.5rem;
  border: 2px solid #2563eb;
  border-radius: 6px;
  color: #2563eb;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.btn-outline:hover {
  background-color: #e0f2fe;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1f2937;
  padding: 0.5rem;
}

/* Section Styles */
section {
  padding: 6rem 2rem 4rem;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Card Styles */
.card {
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.card p {
  color: #6b7280;
  line-height: 1.5;
}

.card a {
  color: #2563eb;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

h2 {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #f3f4f6;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 4rem;
}

/* Pricing Page Specific */
.pricing-section {
  background: #f9fafb;
  padding: 6rem 2rem;
  text-align: center;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.pricing-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #2563eb;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  padding-left: 0;
}

.pricing-card ul li:before {
  content: none;
}

.pricing-card.highlight {
  border: 2px solid #2563eb;
  position: relative;
  transform: scale(1.05);
}

.pricing-card.highlight::before {
  content: "Most Popular";
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 1rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a, 
  .nav-links .btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 5rem 1rem 3rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 350px;
  }
  
  .pricing-card.highlight {
    transform: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Background variations for sections */
section:nth-of-type(even) {
  background-color: #f9fafb;
}

/* Links in content */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Form elements (for future use) */
input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Banner/Hero images */
.banner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 8px;
  margin: 2rem auto;
}