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

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

/* Header and Navigation */
.header {
  background-color: #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 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #1d4ed8;
}

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

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

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

/* Buttons */
.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-color: #2563eb;
  color: white;
}

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

.btn-secondary {
  background-color: #f8fafc;
  color: #2563eb;
  border: 2px solid #2563eb;
}

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

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

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

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

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

.guides h2,
.benefits h2,
.reviews h2,
.cta-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3rem;
}

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

.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;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

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

/* Benefits Grid */
.benefits {
  background-color: #f8fafc;
}

.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.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

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

/* Reviews */
.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: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.reviewer strong {
  color: #1e293b;
}

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

/* CTA Section */
.cta-section {
  background-color: #2563eb;
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

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

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

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

/* Contact Form */
.contact-form-section {
  background-color: #f8fafc;
}

.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: #374151;
}

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

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

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

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2563eb;
}

.footer-contact h4,
.footer-links h4 {
  margin-bottom: 1rem;
  color: #e2e8f0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-body h3 {
  font-size: 1.4rem;
  color: #374151;
  margin: 1.5rem 0 0.5rem;
}

.article-body p {
  margin-bottom: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

.article-body ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}

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

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

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

.related-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.related-card:hover {
  background-color: #e2e8f0;
}

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

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

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

.contact-details {
  display: grid;
  gap: 1.5rem;
}

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

.contact-additional {
  margin-top: 3rem;
}

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

.help-topic {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
}

.help-topic h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

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

.thank-you-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.confirmation-details {
  background-color: #f0fdf4;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #10b981;
}

.next-steps {
  text-align: left;
  max-width: 400px;
  margin: 1rem auto;
}

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

.action-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.return-home {
  margin-top: 3rem;
}

/* Policy Pages */
.policy-content,
.terms-content,
.cookie-content,
.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.policy-content h2,
.terms-content h2,
.cookie-content h2,
.disclaimer-content h2 {
  color: #1e293b;
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.policy-content h3,
.terms-content h3,
.cookie-content h3,
.disclaimer-content h3 {
  color: #374151;
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
}

.policy-content ul,
.terms-content ul,
.cookie-content ul,
.disclaimer-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-content li,
.terms-content li,
.cookie-content li,
.disclaimer-content li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.important-notice {
  background-color: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.important-notice h2 {
  color: #92400e;
  margin-bottom: 1rem;
}

.policy-cta,
.terms-cta,
.cookie-cta,
.disclaimer-cta {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.values-list {
  margin: 1rem 0;
}

.values-list li {
  margin-bottom: 1rem;
  color: #4b5563;
}

/* About Page */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.about-content p {
  margin-bottom: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

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

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

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

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

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

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

  .container {
    padding: 0 15px;
  }

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

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

  .hero {
    padding: 40px 0;
  }

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

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