/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Header and Navigation */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2563eb;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #f8fafc;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards and Grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

/* Sections */
.guides,
.benefits,
.reviews,
.contact-form-section,
.cta-section {
  padding: 80px 0;
}

.guides h2,
.benefits h2,
.reviews h2,
.contact-form-section h2,
.cta-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
}

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

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: #64748b;
}

/* Reviews */
.reviews {
  background: #f8fafc;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review p {
  color: #374151;
  margin-bottom: 1rem;
  font-style: italic;
}

.review cite {
  color: #64748b;
  font-weight: 600;
}

/* Forms */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* CTA Sections */
.cta-section {
  background: #2563eb;
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer h3,
.footer h4 {
  margin-bottom: 1rem;
  color: #f1f5f9;
}

.footer p,
.footer li {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.footer ul {
  list-style: none;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #60a5fa;
}

/* Blog and Article Styles */
.blog-header,
.about-hero,
.contact-hero {
  background: #f8fafc;
  padding: 60px 0;
  text-align: center;
}

.blog-content,
.about-content {
  padding: 60px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.article-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-card h2 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.article {
  padding: 60px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.article-meta {
  color: #64748b;
  font-size: 1.1rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.article-content h2 {
  color: #1e293b;
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

.article-content h3 {
  color: #374151;
  margin: 1.5rem 0 1rem;
  font-size: 1.3rem;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: #374151;
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: #374151;
}

.article-cta {
  background: #f0f9ff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-cta {
  background: #f8fafc;
  padding: 60px 0;
}

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

.cta-item {
  text-align: center;
  padding: 1.5rem;
}

.cta-item h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

/* About Page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.value-item {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
}

.value-item h3 {
  color: #2563eb;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Thank You Page */
.thank-you-content {
  padding: 80px 0;
}

.thank-you-card {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 3rem;
}

.thank-you-card h1 {
  color: #10b981;
  margin-bottom: 2rem;
}

.next-steps {
  background: #f0fdf4;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: left;
}

.next-steps ul {
  list-style: none;
  margin-top: 1rem;
}

.next-steps li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.next-steps li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #10b981;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.additional-resources {
  margin-top: 3rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.resource-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

.legal-content h1 {
  color: #1e293b;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.legal-content h2 {
  color: #374151;
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  color: #4b5563;
  margin: 1.5rem 0 1rem;
}

.legal-content p,
.legal-content li {
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-notice {
  background: #fef3cd;
  border: 2px solid #f59e0b;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-notice h2 {
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-footer {
  background: #dbeafe;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cards-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .card,
  .review,
  .article-card {
    padding: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
