/* 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', sans-serif;
  line-height: 1.6;
  color: #2D3436;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* Typography - Vibrant & Energetic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #C91062;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 32px;
  letter-spacing: 1px;
}

h3 {
  font-size: 24px;
  color: #E8537D;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #2D3436;
}

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

a:hover {
  color: #E8537D;
  transform: translateY(-2px);
}

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

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

/* Header & Navigation - Electric Energy */
header {
  background: linear-gradient(135deg, #C91062 0%, #E8537D 100%);
  box-shadow: 0 4px 20px rgba(201, 16, 98, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav img {
  height: 50px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.main-nav img:hover {
  transform: scale(1.1) rotate(5deg);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav ul li a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C91062, #E8537D);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(201, 16, 98, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(201, 16, 98, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #C91062 0%, #E8537D 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons - Bold & Dynamic */
.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #C91062, #E8537D);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E8537D, #FFE66D);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(201, 16, 98, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #FFE66D, #FFA500);
  color: #2D3436;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FFA500, #FF6B9D);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 230, 109, 0.4);
}

.btn-link {
  background: transparent;
  border: 2px solid #C91062;
  color: #C91062;
  box-shadow: none;
}

.btn-link:hover {
  background: #C91062;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 16, 98, 0.3);
}

/* Hero Section - High Energy */
.hero, .error-hero, .about-hero, .page-header, .thank-you-hero {
  background: linear-gradient(135deg, #FF6B9D 0%, #C91062 50%, #E8537D 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .error-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 230, 109, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero h1, .error-hero h1, .about-hero h1, .page-header h1, .thank-you-hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero p, .error-hero p, .about-hero p, .page-header p, .thank-you-hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: white;
  position: relative;
  z-index: 1;
}

.hero .btn-primary, .hero .btn-secondary {
  margin: 10px;
  position: relative;
  z-index: 1;
}

/* Error Page Specific */
.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #FFE66D;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

/* Success Icon */
.success-icon {
  width: 80px;
  height: 80px;
  background: #FFE66D;
  color: #C91062;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(255, 230, 109, 0.4);
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Section Spacing */
.section, .benefits, .services-overview, .testimonials, .cta-banner, .hack-grid, .blog-grid, .services-detailed, .package-benefits, .stats-section, .mission-values, .approach-section, .contact-info, .contact-form-section, .popular-pages, .help-cta, .next-steps, .additional-resources {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* Benefits Section - Dynamic Layout */
.benefits, .package-benefits {
  background: linear-gradient(135deg, #FFE66D 0%, #FFA500 100%);
}

.benefit-grid, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card, .benefit-item {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover, .benefit-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(201, 16, 98, 0.3);
}

.benefit-card img, .benefit-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 10px rgba(201, 16, 98, 0.3));
}

.benefit-card h3, .benefit-item h3 {
  color: #C91062;
  margin-bottom: 12px;
}

/* Services Grid - Flexbox Only */
.service-grid, .service-grid-large {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card, .service-card-detailed {
  background: white;
  border: 3px solid #FFE66D;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover, .service-card-detailed:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #C91062;
  box-shadow: 0 12px 35px rgba(201, 16, 98, 0.3);
}

.service-card.featured, .service-card-detailed.popular {
  border-color: #C91062;
  background: linear-gradient(135deg, #FFE66D 0%, #FFF 100%);
  box-shadow: 0 10px 30px rgba(201, 16, 98, 0.25);
}

.service-card h3, .service-card-detailed h3 {
  color: #C91062;
  margin-bottom: 16px;
}

.service-card .price, .service-card-detailed .price, .price, .price-display {
  font-size: 32px;
  font-weight: 700;
  color: #E8537D;
  margin: 20px 0;
  display: block;
}

.service-card ul, .service-card-detailed ul, .benefits-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-card ul li, .service-card-detailed ul li, .benefits-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #2D3436;
}

.service-card ul li::before, .service-card-detailed ul li::before, .benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFE66D;
  font-weight: 700;
  font-size: 18px;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #C91062, #E8537D);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(201, 16, 98, 0.4);
}

/* Testimonials - Readable & Vibrant */
.testimonials {
  background: linear-gradient(135deg, #E8537D 0%, #C91062 100%);
  color: white;
}

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

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  color: #2D3436;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card .customer-name {
  color: #C91062;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
  margin-bottom: 0;
}

/* CTA Sections - Bold Energy */
.cta-banner, .cta-section, .contact-cta, .help-cta, .consultation-booking, .return-home {
  background: linear-gradient(135deg, #FFE66D 0%, #FFA500 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 20px;
  box-shadow: 0 10px 30px rgba(255, 230, 109, 0.4);
}

.cta-banner h2, .cta-section h2, .contact-cta h2, .help-cta h2, .consultation-booking h2, .return-home h2 {
  color: #C91062;
  margin-bottom: 16px;
}

.cta-banner p, .cta-section p, .contact-cta p, .help-cta p, .consultation-booking p, .return-home p {
  color: #2D3436;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-banner .btn-primary, .cta-banner .btn-secondary {
  margin: 10px;
}

/* Filter & Category Navigation */
.filter-navigation, .blog-categories {
  padding: 40px 20px;
  background: #F8F9FA;
}

.filters, .category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.filter-btn, .category-btn {
  background: white;
  border: 2px solid #FFE66D;
  color: #C91062;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover, .category-btn:hover {
  background: #FFE66D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 230, 109, 0.4);
}

.filter-btn.active, .category-btn.active {
  background: linear-gradient(135deg, #C91062, #E8537D);
  color: white;
  border-color: #C91062;
}

/* Hack & Post Cards */
.hacks-grid, .posts-grid, .page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.hack-card, .post-card, .page-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.hack-card:hover, .post-card:hover, .page-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(201, 16, 98, 0.25);
}

.category-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FFE66D, #FFA500);
  color: #2D3436;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hack-card h3, .post-card h3, .page-card h3 {
  color: #C91062;
  margin-bottom: 12px;
}

.difficulty, .time {
  display: inline-block;
  background: #F8F9FA;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  margin-right: 8px;
  margin-top: 12px;
  color: #2D3436;
  font-weight: 600;
}

.post-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
  color: #6C757D;
}

/* Values & Stats - Dynamic Display */
.values-grid, .stats-grid, .info-grid, .rights-grid, .resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.value-card, .stat-item, .info-card, .right-card, .resource-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.value-card:hover, .stat-item:hover, .info-card:hover, .right-card:hover, .resource-card:hover {
  transform: translateY(-8px);
  border-color: #FFE66D;
  box-shadow: 0 12px 30px rgba(201, 16, 98, 0.2);
}

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

.stat-label {
  color: #6C757D;
  font-size: 16px;
  font-weight: 600;
}

.info-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

/* Timeline Steps */
.approach-steps, .steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}

.step {
  background: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(201, 16, 98, 0.25);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C91062, #E8537D);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(201, 16, 98, 0.3);
}

/* Contact Form - Vibrant Styling */
.form-container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.form-field label {
  display: block;
  font-weight: 600;
  color: #C91062;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-field, .textarea-field, .email-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #FFE66D;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.input-field:focus, .textarea-field:focus, .email-input:focus {
  outline: none;
  border-color: #C91062;
  box-shadow: 0 0 15px rgba(201, 16, 98, 0.2);
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2D3436;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-note {
  font-size: 14px;
  color: #6C757D;
  margin-top: 16px;
}

/* Newsletter Box */
.newsletter-inline {
  background: linear-gradient(135deg, #E8537D, #C91062);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 20px;
}

.newsletter-inline h2 {
  color: white;
}

.newsletter-inline p {
  color: white;
  font-size: 18px;
}

.newsletter-box {
  display: flex;
  gap: 16px;
  max-width: 500px;
  margin: 32px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-box .email-input {
  flex: 1 1 300px;
  min-width: 200px;
}

/* Legal Content */
.legal-content, .story-section, .cookie-explanation, .cookie-categories, .cookie-management, .legal-entity-info, .contact-details, .responsible-content, .dispute-resolution, .liability-disclaimer, .acceptance-notice, .data-request-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2, .story-section h2 {
  color: #C91062;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #E8537D;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul, .cookie-management ul {
  list-style: none;
  padding-left: 0;
}

.legal-content ul li, .cookie-management ul li {
  padding: 8px 0 8px 30px;
  position: relative;
}

.legal-content ul li::before, .cookie-management ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FFE66D;
  font-weight: 700;
}

.category-section {
  background: #F8F9FA;
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #FFE66D;
}

.notice-box {
  background: #FFE66D;
  padding: 24px;
  border-radius: 15px;
  border-left: 4px solid #C91062;
}

.contact-dpo {
  background: linear-gradient(135deg, #FFE66D, #FFA500);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.faq-quick, .faq-list {
  padding: 40px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #FFE66D;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #C91062;
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(201, 16, 98, 0.2);
}

.faq-item h3 {
  color: #C91062;
  margin-bottom: 12px;
}

/* Footer - Vibrant & Organized */
footer {
  background: linear-gradient(135deg, #2D3436 0%, #1A1D1F 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: #FFE66D;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #B8BFC6;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #B8BFC6;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFE66D;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #B8BFC6;
  font-size: 14px;
}

/* Cookie Consent Banner - Fixed Bottom */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D3436, #1A1D1F);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: linear-gradient(135deg, #C91062, #E8537D);
  color: white;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #E8537D, #FFE66D);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 16, 98, 0.4);
}

.cookie-reject {
  background: transparent;
  border: 2px solid #FFE66D;
  color: white;
}

.cookie-reject:hover {
  background: rgba(255, 230, 109, 0.1);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

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

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F8F9FA;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #C91062;
  color: white;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  background: #F8F9FA;
  border-radius: 15px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #C91062;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #CCC;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: linear-gradient(135deg, #C91062, #E8537D);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .main-nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero h1, .error-hero h1, .about-hero h1, .page-header h1, .thank-you-hero h1 {
    font-size: 32px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .benefit-card, .service-card, .service-card-detailed, .hack-card, .post-card, .page-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .value-card, .stat-item, .info-card, .right-card, .resource-card, .step {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .newsletter-box {
    flex-direction: column;
  }
  
  .newsletter-box .email-input {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card, .service-card, .hack-card, .post-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-card-detailed {
    flex: 1 1 calc(50% - 24px);
  }
  
  .value-card, .stat-item, .step {
    flex: 1 1 calc(50% - 32px);
  }
}

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

.benefit-card, .service-card, .testimonial-card, .hack-card, .post-card {
  animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Print Styles */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-consent { display: none; }
  body { color: black; background: white; }
  a { text-decoration: underline; }
}