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

/* Typography - Professional Corporate */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4A5568;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

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

/* Header - Professional Corporate Style */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

.main-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #E8B86D;
  border-bottom-color: #E8B86D;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1001;
  position: fixed;
  top: 16px;
  right: 20px;
}

.mobile-menu-toggle:hover {
  background-color: #E8B86D;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #2C3E50;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 4px;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E8B86D;
  border-color: #E8B86D;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8B86D;
}

/* Hero Section - Professional Corporate */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #3E5469 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: #F4F1EA;
  margin-bottom: 32px;
  max-width: 600px;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  color: #E8B86D;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #F4F1EA;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #E8B86D;
}

/* Buttons - Professional Corporate Style */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #E8B86D;
  color: #2C3E50;
  border-color: #E8B86D;
}

.btn-primary:hover {
  background-color: #D4A65B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.3);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #2C3E50;
  border-color: #2C3E50;
}

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

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

/* Trust Badge */
.trust-badge {
  display: inline-block;
  background-color: rgba(232, 184, 109, 0.2);
  color: #E8B86D;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
}

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

section h2 {
  text-align: center;
  color: #2C3E50;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts using Flexbox - Professional Corporate */
.benefits-grid, .services-grid, .categories-grid, .packages-grid, .tech-grid, .systems-grid, .achievements-grid, .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

/* Cards - Professional Corporate Aesthetic */
.benefit-card, .service-card, .category-card, .package-card, .tech-card, .system-card, .achievement-card, .contact-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  flex: 1 1 280px;
  max-width: 100%;
  margin-bottom: 20px;
}

.benefit-card:hover, .service-card:hover, .category-card:hover, .package-card:hover, .tech-card:hover {
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
  transform: translateY(-4px);
  border-color: #E8B86D;
}

.benefit-card h3, .service-card h3, .category-card h3, .package-card h3, .tech-card h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 8px;
}

.benefit-card p, .service-card p, .category-card p, .tech-card p {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}

/* Price Display */
.price {
  color: #E8B86D;
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
}

.features {
  font-size: 14px;
  color: #9CA3AF;
  font-style: italic;
}

.includes {
  font-size: 14px;
  color: #6B7280;
  margin-top: 12px;
}

.rooms {
  font-size: 14px;
  color: #E8B86D;
  font-weight: 600;
  margin-top: 8px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  background-color: #F4F1EA;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: #6B7280;
  font-size: 14px;
}

/* Testimonials - Dark Text on Light Background */
.testimonials {
  background-color: #F9FAFB;
  padding: 60px 20px;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  color: #6B7280;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  font-style: normal;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #E8B86D;
  margin-top: 24px;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.feature, .feature-item {
  background-color: #FFFFFF;
  border-left: 4px solid #E8B86D;
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(44, 62, 80, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.feature-item h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p {
  color: #6B7280;
  font-size: 15px;
}

/* Service Details */
.services-list, .types-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.service-item, .type-item {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.service-item h3, .type-item h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-item p, .type-item p {
  color: #6B7280;
  font-size: 16px;
}

/* Styles Grid */
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.style-card {
  background-color: #F4F1EA;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  color: #2C3E50;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Guarantees */
.guarantees-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 32px auto 0;
}

.guarantee-item {
  background-color: #F4F1EA;
  padding: 20px 24px;
  border-radius: 4px;
  color: #2C3E50;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* CTA Sections */
.cta-section, .consultation-cta, .smart-home-highlight {
  background: linear-gradient(135deg, #2C3E50 0%, #3E5469 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  margin: 60px 20px;
}

.cta-section h2, .consultation-cta h2, .smart-home-highlight h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p, .consultation-cta p {
  color: #F4F1EA;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  color: #E8B86D;
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
}

.address {
  color: #E8B86D;
  font-weight: 600;
  margin-top: 16px;
}

/* Smart Home Highlight */
.smart-home-highlight .features-list {
  margin-top: 32px;
  margin-bottom: 32px;
}

.smart-home-highlight .feature {
  background-color: rgba(244, 241, 234, 0.15);
  color: #F4F1EA;
  border-left-color: #E8B86D;
}

/* Text Sections */
.text-section {
  max-width: 800px;
  margin: 32px auto;
  padding: 0 20px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 20px;
}

.mission {
  font-size: 20px;
  font-weight: 600;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 32px;
  padding: 24px;
  background-color: #F4F1EA;
  border-radius: 8px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.value-item {
  padding: 16px 20px;
  background-color: #FFFFFF;
  border-left: 4px solid #E8B86D;
  border-radius: 4px;
  color: #2C3E50;
  font-size: 15px;
  margin-bottom: 12px;
}

/* Contact Page */
.form-placeholder {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background-color: #F9FAFB;
  border-radius: 8px;
  border: 2px dashed #E5E7EB;
  text-align: center;
}

.form-note {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 24px;
  font-style: italic;
}

.form-fields-list {
  text-align: left;
  margin: 24px 0;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
}

.form-fields-list p {
  color: #4A5568;
  font-size: 14px;
  margin-bottom: 8px;
}

.consultation-info, .location-map, .business-hours {
  margin: 60px 0;
}

.consultation-info h2, .location-map h2, .business-hours h2 {
  text-align: center;
  margin-bottom: 32px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.benefit {
  background-color: #F4F1EA;
  padding: 16px 24px;
  border-radius: 4px;
  color: #2C3E50;
  font-size: 15px;
  font-weight: 600;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  margin-bottom: 16px;
}

.coverage {
  text-align: center;
  color: #E8B86D;
  font-weight: 600;
  margin-top: 24px;
  font-size: 15px;
}

.location-info {
  text-align: center;
  max-width: 600px;
  margin: 32px auto;
}

.location-info p {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 12px;
}

.hours-list {
  max-width: 500px;
  margin: 32px auto;
  background-color: #F9FAFB;
  padding: 32px;
  border-radius: 8px;
}

.hours-list p {
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 12px;
}

.hours-list strong {
  color: #2C3E50;
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: #9CA3AF;
  font-style: italic;
  margin-top: 16px;
}

/* Legal Pages */
.legal-content {
  margin: 40px 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.content-wrapper h2 {
  text-align: left;
  color: #2C3E50;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 16px;
}

.content-wrapper ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
}

.content-wrapper ul li {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 8px;
  line-height: 1.6;
}

.content-wrapper a {
  color: #E8B86D;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #D4A65B;
}

.contact-dpo {
  text-align: center;
  padding: 40px 20px;
  background-color: #F4F1EA;
  margin: 40px 0;
  border-radius: 8px;
}

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

.right-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 260px;
  max-width: 300px;
  margin-bottom: 20px;
}

.right-card h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 12px;
}

.right-card p {
  color: #6B7280;
  font-size: 14px;
}

.cookie-list {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

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

.cookie-list ul li {
  background-color: #F9FAFB;
  padding: 16px 20px;
  border-left: 4px solid #E8B86D;
  border-radius: 4px;
  margin-bottom: 12px;
  color: #2C3E50;
  font-size: 15px;
}

/* Thank You Page */
.thank-you {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background-color: #10B981;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.thank-you h1 {
  color: #2C3E50;
  font-size: 42px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #6B7280;
  margin-bottom: 16px;
}

.message {
  font-size: 16px;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 32px;
}

.next-steps {
  background-color: #F9FAFB;
  padding: 60px 20px;
  margin: 40px 0;
}

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

.steps-grid .step {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  flex: 1 1 240px;
  max-width: 280px;
}

.useful-links {
  padding: 60px 20px;
}

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

.link-card {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  flex: 1 1 260px;
  max-width: 320px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.link-card:hover {
  background-color: #E8B86D;
  color: #2C3E50;
  transform: translateY(-2px);
}

.emergency-contact {
  text-align: center;
  padding: 40px 20px;
  background-color: #F4F1EA;
  margin: 40px 0;
  border-radius: 8px;
}

.hours {
  color: #6B7280;
  font-size: 15px;
  margin: 8px 0;
}

/* Footer - Professional Corporate */
footer {
  background-color: #2C3E50;
  color: #F4F1EA;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

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

.footer-nav a:hover {
  color: #E8B86D;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 241, 234, 0.2);
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

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

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

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

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

.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #E8B86D;
  color: #2C3E50;
  border: none;
}

.cookie-accept:hover {
  background-color: #D4A65B;
}

.cookie-reject {
  background-color: transparent;
  color: #F4F1EA;
  border-color: #F4F1EA;
}

.cookie-reject:hover {
  background-color: rgba(244, 241, 234, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #E8B86D;
  border-color: #E8B86D;
}

.cookie-settings:hover {
  background-color: rgba(232, 184, 109, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.cookie-modal-header h2 {
  color: #2C3E50;
  font-size: 24px;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #9CA3AF;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #2C3E50;
}

.cookie-category {
  padding: 20px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 0;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background-color: #D1D5DB;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #E8B86D;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-save-preferences {
  padding: 12px 32px;
  background-color: #E8B86D;
  color: #2C3E50;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-save-preferences:hover {
  background-color: #D4A65B;
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .benefits-grid, .services-grid, .categories-grid {
    gap: 32px;
  }

  .benefit-card, .service-card, .category-card {
    flex: 1 1 calc(50% - 32px);
    max-width: calc(50% - 32px);
  }

  .package-card, .tech-card {
    flex: 1 1 calc(33.333% - 32px);
    max-width: calc(33.333% - 32px);
  }

  .cookie-banner-content {
    flex-direction: row;
  }

  .cookie-banner-text {
    flex: 1;
  }

  .cookie-banner-buttons {
    flex: 0 0 auto;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 60px 40px;
  }

  .benefit-card, .service-card, .category-card {
    flex: 1 1 calc(33.333% - 32px);
    max-width: calc(33.333% - 32px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 32px);
  }

  .footer-content {
    gap: 60px;
  }
}

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

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

.mobile-menu.active {
  animation: slideIn 0.3s ease;
}

/* Accessibility */
*:focus-visible {
  outline: 2px solid #E8B86D;
  outline-offset: 2px;
}

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

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  header {
    position: static;
  }

  body {
    color: #000;
    background: #fff;
  }
}