/* ===================================
   TechVibe Reviews - Complete Stylesheet
   Design Style: Warm & Friendly
   ================================== */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #4A4A4A;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C2C2C;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: #4A4A4A;
}

a {
  color: #FF6B35;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E85A2B;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

ul li {
  margin-bottom: 8px;
  color: #4A4A4A;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #4A4A4A;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.main-nav a:hover {
  background-color: #FFF0E6;
  color: #FF6B35;
}

.cta-button {
  background: linear-gradient(135deg, #FF6B35 0%, #F4845F 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  color: #FFFFFF;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #FF6B35;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #E85A2B;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #FF6B35;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E85A2B;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 60px;
}

.mobile-nav a {
  color: #4A4A4A;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 16px;
  display: block;
}

.mobile-nav a:hover {
  background-color: #FFF0E6;
  color: #FF6B35;
  transform: translateX(8px);
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F4845F 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #FF6B35;
  border: 2px solid #FF6B35;
}

.btn-secondary:hover {
  background-color: #FF6B35;
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFE8DC 0%, #FFD4C3 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 42px;
  color: #2C2C2C;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.page-header {
  background: linear-gradient(135deg, #FFE8DC 0%, #FFD4C3 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.page-header h1 {
  font-size: 40px;
  color: #2C2C2C;
  margin-bottom: 16px;
}

.page-description {
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: #4A4A4A;
}

.breadcrumbs a {
  color: #FF6B35;
  font-weight: 500;
}

.breadcrumbs span {
  color: #4A4A4A;
}

/* CARDS & GRIDS - FLEXBOX ONLY */
.benefits-grid, .category-grid, .stats-grid, .testimonials-grid, 
.reviews-grid, .guides-grid, .tips-grid, .comparisons-grid, 
.services-grid, .values-grid, .contact-grid, .content-cards, 
.steps-grid, .content-grid, .links-grid, .rights-grid, .faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card, .category-card, .stat-card, .testimonial-card,
.review-card, .guide-card, .tip-card, .comparison-card,
.service-card, .value-card, .contact-card, .content-card,
.step-card, .link-card, .right-card, .faq-item, .cookie-type {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card:hover, .category-card:hover, .review-card:hover,
.guide-card:hover, .tip-card:hover, .comparison-card:hover,
.service-card:hover, .value-card:hover, .contact-card:hover,
.content-card:hover, .link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.benefit-card img, .category-card img, .guide-card img,
.tip-card img, .service-card img, .value-card img,
.contact-card img, .content-card img, .link-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.benefit-card h3, .category-card h3, .guide-card h3,
.tip-card h3, .service-card h3, .value-card h3,
.contact-card h3, .content-card h3, .step-card h3,
.right-card h3, .faq-item h3 {
  color: #2C2C2C;
  font-size: 22px;
  margin-bottom: 12px;
}

.benefit-card p, .category-card p, .guide-card p,
.tip-card p, .service-card p, .value-card p,
.contact-card p, .content-card p, .step-card p,
.right-card p, .faq-item p {
  color: #4A4A4A;
  line-height: 1.7;
  flex-grow: 1;
}

.category-link {
  color: #FF6B35;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.category-link:hover {
  gap: 12px;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #FFE8DC 0%, #FFD4C3 100%);
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.stats-grid {
  justify-content: center;
}

.stat-card {
  text-align: center;
  background-color: #FFFFFF;
  min-width: 200px;
  padding: 32px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8DC 100%);
  border-left: 4px solid #FF6B35;
  padding: 32px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2C2C2C;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #2C2C2C;
  margin-top: 16px;
}

.rating {
  color: #FFB800;
  font-size: 20px;
  margin-top: 12px;
}

/* REVIEWS & SERVICES */
.review-card, .service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.review-header h3 {
  margin-bottom: 4px;
}

.review-excerpt {
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.category-badge {
  background-color: #FFE8DC;
  color: #FF6B35;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.price-tag, .service-price {
  color: #FF6B35;
  font-weight: 700;
  font-size: 18px;
}

/* COMPARISONS */
.comparison-card {
  position: relative;
  padding-top: 48px;
}

.versus-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FF6B35 0%, #F4845F 100%);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

.comparison-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.comparison-products .product {
  background-color: #FFF8F0;
  padding: 16px;
  border-radius: 12px;
}

.comparison-products .product h3 {
  color: #2C2C2C;
  font-size: 18px;
  margin-bottom: 4px;
}

.comparison-products .product p {
  color: #FF6B35;
  font-weight: 600;
  margin-bottom: 0;
}

.comparison-summary {
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* MISSION & STORY SECTIONS */
.mission-content, .story-content, .methodology-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-card, .vision-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
  margin-bottom: 24px;
}

.mission-card h3, .vision-card h3 {
  color: #FF6B35;
  margin-bottom: 16px;
}

.story-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #4A4A4A;
}

.methodology-list {
  list-style: none;
  padding-left: 0;
}

.methodology-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #4A4A4A;
  line-height: 1.7;
}

.methodology-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
  font-size: 18px;
}

/* CONTACT PAGE */
.contact-methods {
  margin-bottom: 60px;
}

.contact-card {
  text-align: center;
  align-items: center;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.contact-details {
  font-size: 14px;
  color: #4A4A4A;
  margin-top: 12px;
}

/* FORM STYLES */
.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #FFE8DC 0%, #FFD4C3 100%);
  padding: 40px;
  border-radius: 20px;
}

.contact-info h3 {
  color: #2C2C2C;
  margin-bottom: 16px;
}

.contact-info p {
  color: #4A4A4A;
  margin-bottom: 24px;
}

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

.form-benefits li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4A4A4A;
}

.form-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
}

.form-container {
  flex: 1 1 500px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: #2C2C2C;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #FFE8DC;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  color: #4A4A4A;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

/* CTA SECTIONS */
.cta-section, .cta-banner {
  background: linear-gradient(135deg, #FF6B35 0%, #F4845F 100%);
  padding: 60px 20px;
  border-radius: 40px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-content .btn-primary {
  background-color: #FFFFFF;
  color: #FF6B35;
}

.cta-content .btn-primary:hover {
  background-color: #FFF8F0;
  color: #FF6B35;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FFE8DC 0%, #FFD4C3 100%);
  border-radius: 40px;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #FF6B35 0%, #F4845F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: #FFFFFF;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.confirmation-message {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.7;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 40px 20px 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
}

.content-wrapper h2 {
  color: #FF6B35;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #FFE8DC;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  color: #2C2C2C;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul {
  padding-left: 24px;
}

.content-wrapper ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-wrapper strong {
  color: #2C2C2C;
  font-weight: 600;
}

.last-updated {
  color: #4A4A4A;
  font-style: italic;
  font-size: 14px;
}

.cookies-types {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.cookie-type {
  border-left: 4px solid #FF6B35;
  background-color: #FFF8F0;
}

/* OFFICE INFO */
.office-info {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.office-details {
  max-width: 700px;
  margin: 0 auto;
}

.office-text h3 {
  color: #FF6B35;
  margin-bottom: 16px;
}

.office-text p {
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* CATEGORY LINKS */
.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.category-link {
  background-color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 25px;
  color: #FF6B35;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.category-link:hover {
  background-color: #FF6B35;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* HOW IT WORKS */
.how-it-works {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 40px;
  margin-bottom: 60px;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 40px;
}

.step-card {
  text-align: center;
  align-items: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35 0%, #F4845F 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* FOOTER */
footer {
  background-color: #2C2C2C;
  color: #E0E0E0;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #B0B0B0;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #FF6B35;
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.legal-links a {
  color: #B0B0B0;
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #FF6B35;
}

.copyright {
  color: #808080;
  font-size: 13px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-text {
  flex: 1 1 400px;
  color: #4A4A4A;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #FF6B35;
  font-weight: 600;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #FF6B35 0%, #F4845F 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cookie-btn-reject {
  background-color: #E0E0E0;
  color: #4A4A4A;
}

.cookie-btn-reject:hover {
  background-color: #D0D0D0;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #FF6B35;
  border: 2px solid #FF6B35;
}

.cookie-btn-settings:hover {
  background-color: #FFF0E6;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: #2C2C2C;
  margin-bottom: 0;
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  background-color: #E0E0E0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #4A4A4A;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  background-color: #FF6B35;
  color: #FFFFFF;
}

.cookie-category {
  padding: 20px;
  background-color: #FFF8F0;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h4 {
  color: #2C2C2C;
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-category p {
  color: #4A4A4A;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E0E0E0;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #FF6B35;
}

input:checked + .cookie-slider::before {
  transform: translateX(24px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 42px; }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  .page-header h1 {
    font-size: 48px;
  }
  
  .benefits-grid,
  .category-grid {
    gap: 32px;
  }
  
  .benefit-card,
  .category-card,
  .review-card,
  .guide-card,
  .tip-card,
  .comparison-card,
  .service-card,
  .value-card,
  .contact-card,
  .content-card,
  .step-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .stat-card {
    flex: 1 1 calc(25% - 18px);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .benefit-card,
  .review-card,
  .guide-card,
  .service-card,
  .value-card,
  .content-card {
    flex: 1 1 calc(33.333% - 22px);
  }
  
  .category-card,
  .tip-card,
  .comparison-card,
  .contact-card,
  .step-card {
    flex: 1 1 calc(25% - 18px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.hidden { display: none; }

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section,
  .cta-banner {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}