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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
.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 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c41e3a;
  text-decoration: none;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.8rem;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: #c41e3a;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
}

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

.hero .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon {
  font-size: 8rem;
  opacity: 0.7;
}

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

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

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

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

.btn-secondary:hover {
  background: #545b62;
  transform: translateY(-2px);
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c41e3a;
  text-align: center;
  margin-bottom: 3rem;
}

/* Guides Section */
.guides {
  padding: 4rem 0;
  background: #fff;
}

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

.guide-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

/* CTA Block */
.cta-block {
  background: #c41e3a;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta-block .btn-primary:hover {
  background: #f8f9fa;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.benefit-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.benefit-item h3 {
  color: #c41e3a;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
  padding: 4rem 0;
  background: white;
}

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

.review-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #c41e3a;
}

.review-stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.review-author {
  color: #c41e3a;
  font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-container h2 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.form-container p {
  color: #666;
  margin-bottom: 2rem;
}

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

.form-group {
  text-align: left;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  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: #c41e3a;
}

/* Page Styles */
.page-header {
  text-align: center;
  padding: 3rem 0;
  background: #f8f9fa;
}

.page-header h1 {
  font-size: 3rem;
  color: #c41e3a;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
}

/* Content Sections */
.content-section {
  padding: 2rem 0;
  border-bottom: 1px solid #e9ecef;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.content-section h3 {
  color: #333;
  margin: 1.5rem 0 0.5rem 0;
}

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

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

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

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

/* Blog Styles */
.blog-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem;
}

.blog-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
}

.blog-content h2 {
  margin-bottom: 1rem;
}

.blog-content h2 a {
  color: #c41e3a;
  text-decoration: none;
}

.blog-content h2 a:hover {
  text-decoration: underline;
}

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

.blog-category {
  background: #c41e3a;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Article Styles */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.article-header h1 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: #666;
}

.article-body {
  line-height: 1.8;
}

.article-body h2 {
  color: #c41e3a;
  margin: 2rem 0 1rem 0;
}

.article-body h3 {
  color: #333;
  margin: 1.5rem 0 0.5rem 0;
}

.article-body ul {
  margin: 1rem 0 1rem 2rem;
}

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

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

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

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

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

.contact-details {
  margin-top: 2rem;
}

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

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

.contact-form-container {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.contact-form-container h2 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.additional-info {
  margin-top: 4rem;
}

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

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

.help-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  color: #c41e3a;
  margin-bottom: 2rem;
}

.thank-you-message {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.next-steps h2 {
  color: #c41e3a;
  text-align: center;
  margin-bottom: 1rem;
}

.steps-list {
  list-style: none;
  margin-left: 0;
}

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

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

.continue-exploring {
  margin: 3rem 0;
}

.continue-exploring h2 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

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

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  line-height: 1.8;
}

.legal-content h1 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.legal-content h2 {
  color: #c41e3a;
  margin: 2rem 0 1rem 0;
}

.legal-content h3 {
  color: #333;
  margin: 1.5rem 0 0.5rem 0;
}

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

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

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

.back-to-contact {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
}

/* CTA Sections */
.cta-section {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #666;
  margin-bottom: 2rem;
}

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

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

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

.footer-section h4 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.footer-slogan {
  font-style: italic;
  color: #ccc;
}

.footer-links {
  list-style: none;
}

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

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

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

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

  .nav-menu {
    gap: 1rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .section-title {
    font-size: 2rem;
  }

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

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

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

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

  .blog-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .section-title {
    font-size: 1.8rem;
  }

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

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