/* 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: #fff;
}

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

/* Header and Navigation */
.header {
  background: #fff;
  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: #c41e3a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #a01729;
}

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

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

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

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

.hero h1 {
  font-size: 3rem;
  color: #c41e3a;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

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

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #545b62;
  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.5rem;
  color: #c41e3a;
  margin-bottom: 3rem;
}

/* Grids */
.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(300px, 1fr));
}

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

.guide-card:hover,
.benefit-item:hover,
.review-card:hover {
  transform: translateY(-5px);
}

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

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

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

.reviewer {
  font-weight: bold;
  color: #c41e3a;
  margin-top: 1rem;
}

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

.cta-section p {
  font-size: 1.1rem;
  color: #666;
  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: #333;
}

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

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

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.footer-links a:hover {
  color: #c41e3a;
}

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

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

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

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

.main-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.main-content ul {
  margin: 1rem 0 1rem 2rem;
}

.main-content li {
  margin-bottom: 0.5rem;
}

/* Blog Styles */
.blog-intro {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
}

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

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

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

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

.blog-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #666;
}

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

.article-intro {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #666;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

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

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

.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #eee;
}

.related-articles h3 {
  color: #c41e3a;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.related-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

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

.related-card h4 {
  color: #c41e3a;
  margin-bottom: 0.5rem;
}

.related-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-intro {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info-section h2 {
  color: #c41e3a;
  margin-bottom: 1.5rem;
}

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

.contact-item h3 {
  color: #c41e3a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

/* FAQ Styles */
.faq-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #eee;
}

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

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

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

.faq-item h3 {
  color: #c41e3a;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

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

.confirmation-details {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.confirmation-details p {
  margin-bottom: 0.5rem;
  color: #155724;
}

.thank-you-message {
  margin: 2rem 0;
}

.thank-you-message p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.next-steps h2 {
  color: #c41e3a;
  margin-bottom: 2rem;
}

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

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.step-card h3 {
  color: #c41e3a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.step-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-reminder {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.contact-reminder h3 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

/* Policy Pages Styles */
.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

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

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

.policy-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

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

.disclaimer-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-notice h2 {
  color: #856404;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.disclaimer-notice p {
  color: #856404;
  font-weight: 500;
}

/* About Page Styles */
.about-section {
  margin-bottom: 3rem;
}

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

.value-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

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

.value-item p {
  color: #666;
  line-height: 1.6;
}

/* 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;
  }

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

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

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

  .main-content h1 {
    font-size: 2rem;
  }

  .blog-card {
    padding: 1.5rem;
  }
}
