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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

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

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #0056b3;
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: #6c757d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: white;
  color: #007bff;
  transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-content h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.cookie-content p {
  color: #ecf0f1;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.cookie-modal.show {
  display: block;
}

.cookie-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h4 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.cookie-category p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.cookie-category input[type="checkbox"] {
  margin-right: 8px;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007bff;
}

.nav-brand a {
  color: inherit;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #007bff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

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

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
}

.feature-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
}

.feature-text {
  font-size: 0.9rem;
  color: #666;
}

/* Experience Section */
.experience {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

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

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

.experience-icon {
  margin-bottom: 1rem;
}

.experience-item h3 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

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

/* Reviews Section */
.reviews {
  padding: 5rem 0;
}

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

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

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

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

.review-author {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.review-author strong {
  display: block;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

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

/* Contact Preview Section */
.contact-preview {
  padding: 5rem 0;
  background-color: #6c757d;
}

.contact-preview .section-header h2 {
  color: #2c3e50;
}

.contact-preview .section-header p {
  color: white;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.contact-item p {
  margin-bottom: 0;
  color: #555;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

.footer-section p {
  color: #bdc3c7;
  margin-bottom: 1rem;
}

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

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

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

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #bdc3c7;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #3498db;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #bdc3c7;
  margin: 0;
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
  padding: 4rem 0;
}

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

.blog-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-content {
  padding: 1.5rem;
}

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

.blog-date {
  color: #666;
}

.blog-category {
  color: #007bff;
  font-weight: 500;
}

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

.blog-content h3 a {
  color: #2c3e50;
  text-decoration: none;
}

.blog-content h3 a:hover {
  color: #007bff;
}

.blog-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: #007bff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #0056b3;
}

/* Newsletter CTA */
.newsletter-cta {
  padding: 4rem 0;
  background-color: #007bff;
  color: white;
  text-align: center;
}

.newsletter-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 6rem 0 1rem;
  background-color: #f8f9fa;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #007bff;
}

.breadcrumb span {
  color: #666;
}

/* Article Styles */
.article {
  padding: 2rem 0 4rem;
}

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

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.article-date,
.article-reading-time {
  color: #666;
}

.article-category {
  color: #007bff;
  font-weight: 500;
}

.article-excerpt {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.article-image {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

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

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
}

.article-intro {
  font-size: 1.1rem;
  color: #555;
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #007bff;
}

.article-tip {
  background-color: #e7f3ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #007bff;
}

.article-tip h3 {
  color: #007bff;
  margin-bottom: 0.5rem;
}

.article-warning {
  background-color: #fff3cd;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #ffc107;
}

.article-warning h3 {
  color: #856404;
  margin-bottom: 0.5rem;
}

.article-checklist {
  background-color: #d4edda;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #28a745;
}

.article-checklist h3 {
  color: #155724;
  margin-bottom: 1rem;
}

.article-checklist ul {
  list-style: none;
  padding: 0;
}

.article-checklist li::before {
  content: '✓ ';
  color: #28a745;
  font-weight: bold;
  margin-right: 0.5rem;
}

.article-conclusion {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border: 1px solid #dee2e6;
}

.article-conclusion h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-table th,
.article-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.article-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
}

.article-table tr:hover {
  background-color: #f8f9fa;
}

.article-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros,
.cons {
  padding: 1.5rem;
  border-radius: 8px;
}

.pros {
  background-color: #d4edda;
  border-left: 4px solid #28a745;
}

.cons {
  background-color: #f8d7da;
  border-left: 4px solid #dc3545;
}

.pros h4 {
  color: #155724;
  margin-bottom: 1rem;
}

.cons h4 {
  color: #721c24;
  margin-bottom: 1rem;
}

.article-footer {
  border-top: 2px solid #eee;
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background-color: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.article-share h4 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
}

.share-btn.facebook {
  background-color: #1877f2;
}

.share-btn.twitter {
  background-color: #1da1f2;
}

.share-btn.linkedin {
  background-color: #0077b5;
}

/* Related Articles */
.related-articles {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

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

.related-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.related-card h3 a {
  color: #2c3e50;
  text-decoration: none;
}

.related-card h3 a:hover {
  color: #007bff;
}

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

/* Article CTA */
.article-cta {
  padding: 4rem 0;
  background-color: #007bff;
  color: white;
  text-align: center;
}

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

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

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

.contact-info-section h2 {
  margin-bottom: 2rem;
}

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

.contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.contact-details .contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details-text h3 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.contact-details-text p {
  margin-bottom: 0.25rem;
  color: #555;
}

.contact-details-text small {
  color: #666;
  font-size: 0.85rem;
}

.service-areas {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.service-areas h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-areas ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.service-areas li {
  color: #555;
  padding: 0.25rem 0;
}

/* Contact Form */
.contact-form-section h2 {
  margin-bottom: 1rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  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: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-note {
  margin-top: 1rem;
  text-align: center;
}

.form-note small {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* FAQ Section */
.contact-faq {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.contact-faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Map Section */
.contact-map {
  padding: 4rem 0;
}

.contact-map h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.map-placeholder {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.map-info h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.map-info p {
  margin-bottom: 0.5rem;
}

.map-info ul {
  margin-bottom: 1.5rem;
}

/* Newsletter Section */
.newsletter-benefits {
  padding: 4rem 0;
}

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

.benefit-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

.newsletter-form-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.newsletter-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.newsletter-form-container h2 {
  margin-bottom: 1rem;
}

.newsletter-form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-preview {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.newsletter-preview h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
}

.preview-container {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.preview-header {
  background-color: #007bff;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-logo {
  font-weight: 600;
  font-size: 0.9rem;
}

.preview-date {
  font-size: 0.8rem;
  opacity: 0.9;
}

.preview-content {
  padding: 1rem;
  background-color: #f8f9fa;
}

.preview-section {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

.preview-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.preview-section h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.preview-section p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.newsletter-testimonials {
  padding: 4rem 0;
}

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

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

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

.newsletter-faq {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

/* Legal Pages */
.legal-page {
  padding: 6rem 0 4rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-content h1 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

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

.legal-content h2 {
  color: #2c3e50;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #007bff;
}

.legal-content h3 {
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h4 {
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid #007bff;
}

.contact-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
  text-align: center;
}

.cookie-table {
  margin: 1.5rem 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.cookie-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
}

.cookie-settings-preview {
  margin: 2rem 0;
  text-align: center;
}

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

.impact-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.impact-item h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.impact-item ul {
  list-style: none;
  padding: 0;
}

.impact-item li {
  color: #666;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.impact-item li::before {
  content: '•';
  color: #007bff;
  position: absolute;
  left: 0;
}

/* Thanks Page */
.thanks-section {
  padding: 8rem 0 4rem;
  text-align: center;
}

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

.success-icon,
.error-icon {
  margin-bottom: 2rem;
}

.thanks-message {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.error-message {
  font-size: 1.1rem;
  color: #dc3545;
  margin-bottom: 2rem;
}

.thanks-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: left;
}

.thanks-info h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.thanks-info ul {
  list-style: none;
  padding: 0;
}

.thanks-info li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.thanks-info li::before {
  content: '✓';
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-reminder {
  background-color: #fff3cd;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #ffc107;
}

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

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

.emergency-contact .contact-item {
  text-align: center;
  padding: 1rem;
  background-color: white;
  border-radius: 4px;
}

.emergency-contact .contact-item strong {
  display: block;
  color: #856404;
  margin-bottom: 0.5rem;
}

.emergency-contact .contact-item a {
  color: #007bff;
  font-weight: 600;
  font-size: 1.1rem;
}

.thanks-actions,
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.additional-info {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

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

.info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-icon {
  margin-bottom: 1rem;
}

.info-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.info-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-features {
    justify-content: center;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .newsletter-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container {
    grid-template-columns: 1fr;
  }
  
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .article-pros-cons {
    grid-template-columns: 1fr;
  }
  
  .thanks-actions,
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .emergency-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-content {
    padding: 1.5rem;
    width: 95%;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons {
    gap: 0.5rem;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
  }
}

/* Thank You Page Styles */
.thank-you-page {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 80px);
}

.thank-you-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.thank-you-content h1 {
  color: #28a745;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.thank-you-message {
  margin-bottom: 3rem;
}

.thank-you-message p {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

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

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: left;
}

.info-item svg {
  flex-shrink: 0;
}

.info-item span {
  font-size: 0.95rem;
  color: #495057;
}

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

.next-steps h2 {
  color: #343a40;
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.step {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #007bff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step h3 {
  color: #343a40;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-emergency {
  margin-bottom: 3rem;
}

.emergency-box {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.emergency-box h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.emergency-box p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.emergency-contact .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #dc3545;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.emergency-contact .btn:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
}

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

.return-links .btn {
  min-width: 180px;
}

/* Responsive adjustments for thank you page */
@media (max-width: 768px) {
  .thank-you-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 2rem;
  }
  
  .response-info {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .return-links {
    flex-direction: column;
    align-items: center;
  }
  
  .return-links .btn {
    width: 100%;
    max-width: 300px;
  }
}
