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

.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: 2.5rem;
  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 */
.cta-button,
.submit-button,
.action-link,
.card-link,
.read-more {
  display: inline-block;
  background-color: #c41e3a;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover,
.submit-button:hover,
.action-link:hover,
.card-link:hover,
.read-more:hover {
  background-color: #a01729;
}

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

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

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

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

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

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

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

/* CTA Block */
.cta-block {
  background-color: #f8f9fa;
  text-align: center;
}

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

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

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

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

/* Forms */
.contact-form,
.contact-form-section 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: #333;
}

.form-group input,
.form-group select,
.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 select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c41e3a;
}

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

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

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

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

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

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

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

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

.main-content h1 {
  color: #c41e3a;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* 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: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-card h3 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

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

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

.blog-article p {
  margin-bottom: 1.5rem;
  color: #555;
}

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

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

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

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

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

.contact-details {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

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

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

.thank-you-message {
  margin: 2rem 0;
  font-size: 1.1rem;
  color: #555;
}

.next-steps {
  margin: 3rem 0;
}

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

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

.action-card h3 {
  color: #c41e3a;
  margin-bottom: 1rem;
}

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

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

.legal-content p,
.legal-content li {
  color: #555;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    padding: 2rem 0;
  }

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

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