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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

h2 {
  font-size: 2rem;
  color: #34495e;
}

h3 {
  font-size: 1.5rem;
  color: #34495e;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Header and Navigation */
.navbar {
  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;
}

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

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

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

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

/* Buttons */
.btn-primary {
  background-color: #f39c12;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #e67e22;
}

.btn-secondary {
  background-color: transparent;
  color: #f39c12;
  padding: 12px 24px;
  border: 2px solid #f39c12;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

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

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

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

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

.guide-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: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.guide-icon,
.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.guide-card h3,
.benefit-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

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

.guides {
  background-color: #f8f9fa;
}

.benefits {
  background-color: white;
}

.reviews {
  background-color: #f8f9fa;
}

.cta-section {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  text-align: center;
}

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

.cta-section .btn-primary {
  background-color: white;
  color: #f39c12;
}

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

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

.reviewer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.reviewer strong {
  display: block;
  color: #2c3e50;
}

.reviewer span {
  color: #666;
  font-size: 0.9rem;
}

/* Forms */
.contact-form-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.contact-form {
  max-width: 500px;
  margin: 2rem auto 0;
}

.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: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 40px 0;
}

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

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

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

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

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

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

.footer-section ul li a:hover {
  color: #f39c12;
}

/* Blog Styles */
.blog-header {
  background: linear-gradient(135deg, #fff9e6 0%, #fef5d3 100%);
  padding: 60px 0;
  text-align: center;
}

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

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

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

.article-card h2 a {
  color: #2c3e50;
  text-decoration: none;
}

.article-card h2 a:hover {
  color: #f39c12;
}

.read-more {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Blog Article Styles */
.blog-article {
  padding: 60px 0;
}

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

.article-meta {
  color: #666;
  font-size: 0.9rem;
}

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

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

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

.article-cta {
  background: linear-gradient(135deg, #fff9e6 0%, #fef5d3 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #fff9e6 0%, #fef5d3 100%);
  padding: 60px 0;
  text-align: center;
}

.contact-content {
  padding: 60px 0;
}

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

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

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

.contact-cta {
  background-color: #f8f9fa;
  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: 2rem;
}

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

/* Thank You Page Styles */
.thank-you-section {
  padding: 80px 0;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.next-steps ul {
  padding-left: 1.5rem;
}

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

.while-you-wait {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.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 a {
  color: #2c3e50;
  text-decoration: none;
}

.resource-card h3 a:hover {
  color: #f39c12;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #fff9e6 0%, #fef5d3 100%);
  padding: 60px 0;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.values-list {
  display: grid;
  gap: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.about-approach {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.about-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #fff9e6 0%, #fef5d3 100%);
  border-radius: 12px;
}

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

.legal-content .container {
  max-width: 800px;
}

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

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

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

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

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

.disclaimer-notice p {
  color: #856404;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

  .hero {
    padding: 40px 0;
  }

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

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

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
}
