/* 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: #2d3748;
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

.btn-secondary {
  background: #e2e8f0;
  color: #4a5568;
}

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Guides Section */
.guides {
  padding: 80px 0;
}

.guides h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 3rem;
}

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

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

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

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

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

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

/* CTA Block */
.cta-block {
  background: #6b46c1;
  color: white;
  padding: 60px 0;
  text-align: center;
}

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

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

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: #f7fafc;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 3rem;
}

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

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

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

.benefit-item h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #4a5568;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
}

.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 3rem;
}

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

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

.stars {
  color: #f6ad55;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.reviewer strong {
  color: #2d3748;
}

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

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: #f7fafc;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 3rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

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

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

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

/* Footer */
.footer {
  background: #2d3748;
  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 {
  margin-bottom: 1rem;
  color: #6b46c1;
}

.footer-slogan {
  font-style: italic;
  opacity: 0.9;
}

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

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

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

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

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

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

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

.blog-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.blog-image {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

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

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

.blog-content h2 a:hover {
  color: #6b46c1;
}

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

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

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

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

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

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

.article-content h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin: 1.5rem 0 0.5rem 0;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: #4a5568;
}

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

.article-content li {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

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

/* Contact Page */
.contact-intro {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 3rem;
  text-align: center;
}

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

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

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

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

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

.contact-benefits ul {
  list-style: none;
  padding-left: 0;
}

.contact-benefits li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.contact-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6b46c1;
  font-weight: bold;
}

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

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

.confirmation-text {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #4a5568;
}

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

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

.step {
  text-align: center;
}

.step-number {
  background: #6b46c1;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-weight: bold;
}

.while-you-wait {
  margin-bottom: 3rem;
}

.quick-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Policy Pages */
.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: #2d3748;
  margin-bottom: 1rem;
}

.policy-section h3 {
  color: #4a5568;
  margin: 1.5rem 0 0.5rem 0;
}

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

.policy-section li {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

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

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

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

.about-section h2 {
  color: #2d3748;
  margin-bottom: 1rem;
}

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

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

.approach-item h3 {
  color: #6b46c1;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

  .blog-card {
    flex-direction: column;
    text-align: center;
  }

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

  .quick-links {
    flex-direction: column;
    align-items: center;
  }

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

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

  .nav-container {
    padding: 1rem 15px;
  }

  .hero {
    padding: 60px 0;
  }

  .guides,
  .benefits,
  .reviews,
  .contact-form-section {
    padding: 60px 0;
  }
}
