/* 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-color: #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: bold;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #1d4ed8;
}

.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;
}

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

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

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

/* Buttons */
.cta-button,
.submit-button,
.read-more {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover,
.submit-button:hover,
.read-more:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

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

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

/* Grid Layouts */
.guides-grid,
.benefits-grid,
.reviews-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.guides-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.guide-card,
.benefit-item,
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover,
.benefit-item:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.guide-card h3,
.benefit-item h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

/* Benefits Icons */
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

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

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

.review-card cite {
  color: #6b7280;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background-color: #f8fafc;
  text-align: center;
}

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

/* Contact Form */
.contact-form {
  max-width: 600px;
  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 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 textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: white;
  padding: 3rem 0 2rem;
}

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

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

.footer-section p,
.footer-section li {
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

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

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

/* Main Content Pages */
.main-content {
  padding: 2rem 0;
  min-height: 60vh;
}

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

.intro-text {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

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

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

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

/* Article Styles */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.article-intro {
  font-size: 1.2rem;
  color: #4b5563;
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 0 8px 8px 0;
}

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

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

.blog-article p {
  margin-bottom: 1rem;
  color: #4b5563;
}

.blog-article ul {
  margin: 1rem 0 1rem 2rem;
  color: #4b5563;
}

.blog-article li {
  margin-bottom: 0.5rem;
}

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

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

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

/* Contact Page Styles */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 2rem 0;
}

.contact-info h2 {
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

/* FAQ Styles */
.faq-section {
  margin: 4rem 0;
}

.faq-section h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 2rem;
}

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

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

/* Thank You Page */
.thank-you-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.confirmation-message {
  font-size: 1.2rem;
  color: #059669;
  background-color: #ecfdf5;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.next-steps,
.additional-resources {
  margin: 3rem 0;
  text-align: left;
}

.next-steps h2,
.additional-resources h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.next-steps ul {
  margin-left: 2rem;
  color: #4b5563;
}

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

.resource-link {
  display: block;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.resource-link:hover {
  transform: translateY(-3px);
}

.resource-link h3 {
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.resource-link p {
  color: #64748b;
}

.back-to-site {
  margin: 3rem 0;
}

/* Policy Pages */
.policy-section {
  margin: 2rem 0;
}

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

.policy-section h3 {
  color: #374151;
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
}

.policy-section p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin: 1rem 0 1rem 2rem;
  color: #4b5563;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.important-notice {
  background-color: #fef3c7;
  border: 2px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  color: #92400e;
}

.back-link {
  text-align: center;
  margin: 3rem 0;
}

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

  .nav-menu {
    gap: 1rem;
  }

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

  .hero p {
    font-size: 1rem;
  }

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

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

  .resource-links {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding: 2rem 0;
  }

  .guides,
  .benefits,
  .reviews,
  .cta-section {
    padding: 2rem 0;
  }

  .guide-card,
  .benefit-item,
  .review-card {
    padding: 1.5rem;
  }
}
