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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: linear-gradient(135deg, #f8f5f8 0%, #ffffff 100%);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #C9A7C7;
}

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

/* Header */
header {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,244,249,0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(139, 71, 137, 0.1);
  border-bottom: 1px solid rgba(201, 167, 199, 0.2);
}

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

header img {
  height: 50px;
  width: auto;
}

header nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  font-weight: 500;
  font-size: 15px;
  color: #2c2c2c;
  position: relative;
  padding: 8px 0;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8B4789 0%, #C9A7C7 100%);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(139, 71, 137, 0.4);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #8B4789 0%, #C9A7C7 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  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: 2px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

/* Buttons */
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  margin: 8px;
}

.cta-button,
.cta-primary {
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.3);
}

.cta-button:hover,
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.4);
  color: white;
}

.cta-secondary {
  background: transparent;
  color: #8B4789;
  border: 2px solid #8B4789;
}

.cta-secondary:hover {
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F4E8F3 0%, #ffffff 50%, #F4E8F3 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 71, 137, 0.05) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #6a6a6a;
}

/* Trust Indicators */
.trust-indicators,
.indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.indicator {
  background: linear-gradient(135deg, #ffffff 0%, #F4E8F3 100%);
  padding: 20px 32px;
  border-radius: 15px;
  font-weight: 600;
  color: #8B4789;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.1);
  border: 2px solid rgba(201, 167, 199, 0.3);
  transition: all 0.3s ease;
  flex: 1 1 200px;
  text-align: center;
  min-width: 200px;
}

.indicator:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.2);
}

/* Service Cards */
.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.service-card,
.card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B4789 0%, #C9A7C7 100%);
  border-radius: 20px 20px 0 0;
}

.service-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.2);
  border-color: rgba(201, 167, 199, 0.5);
}

.service-card h3,
.card h3 {
  color: #8B4789;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.card p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: #5a5a5a;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #8B4789;
  display: block;
  margin-top: auto;
}

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

.step {
  background: linear-gradient(135deg, #ffffff 0%, #F4E8F3 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.3);
}

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

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #F4E8F3 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 600px;
  border-left: 4px solid #8B4789;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(139, 71, 137, 0.2);
}

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

.author {
  font-weight: 700;
  color: #8B4789;
  display: block;
  font-size: 16px;
}

.details {
  font-size: 14px;
  color: #6a6a6a;
  display: block;
}

.rating {
  color: #FFD700;
  font-size: 18px;
  display: block;
}

/* Features Grid */
.features-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
}

.feature,
.feature-item {
  background: linear-gradient(135deg, #ffffff 0%, #F4E8F3 100%);
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.1);
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.2);
  border-color: rgba(201, 167, 199, 0.5);
}

.feature h3 {
  color: #8B4789;
  font-size: 20px;
  margin-bottom: 8px;
}

/* Text-Image Sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* Timeline & Phases */
.timeline,
.phase {
  margin-bottom: 40px;
}

.phase {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.1);
  border-left: 4px solid #8B4789;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.phase:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(139, 71, 137, 0.2);
}

.phase h2 {
  color: #8B4789;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left;
}

.phase ul,
.phase ol {
  padding-left: 24px;
  margin-top: 16px;
}

.phase li {
  margin-bottom: 12px;
  color: #4a4a4a;
  line-height: 1.6;
}

.milestone {
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.2);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.3);
}

/* Project Cards */
.project-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #C9A7C7;
  margin-bottom: 24px;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(139, 71, 137, 0.2);
}

.category {
  display: inline-block;
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.date {
  color: #6a6a6a;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  background: linear-gradient(135deg, #ffffff 0%, #F4E8F3 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.2);
}

.team-member h3 {
  color: #8B4789;
  margin-bottom: 8px;
}

.team-member p {
  color: #6a6a6a;
  font-size: 15px;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #8B4789;
}

.value:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.2);
}

.value h3 {
  color: #8B4789;
  margin-bottom: 12px;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  padding: 32px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.3);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(139, 71, 137, 0.4);
}

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

.style {
  background: linear-gradient(135deg, #ffffff 0%, #F4E8F3 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
}

.style:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.2);
}

.style h3 {
  color: #8B4789;
  margin-bottom: 12px;
}

/* Contact & Info */
.contact-options,
.info-grid,
.methods,
.elements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.option,
.info-item,
.method,
.element {
  background: linear-gradient(135deg, #ffffff 0%, #F4E8F3 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.1);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.option:hover,
.info-item:hover,
.method:hover,
.element:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.2);
}

.option h3,
.info-item h3,
.method h3 {
  color: #8B4789;
  margin-bottom: 12px;
}

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

.faq-item:hover {
  border-left-color: #8B4789;
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.2);
}

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

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(139, 71, 137, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .cta-button {
  background: white;
  color: #8B4789;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner .cta-button:hover {
  background: #F4E8F3;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.contact-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 20px;
}

/* Legal Content */
.legal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 71, 137, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #8B4789;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 250px;
}

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

.footer-col h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-size: 15px;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 15px;
}

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

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

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid rgba(201, 167, 199, 0.3);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Lato', sans-serif;
}

#accept-all-cookies {
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  border: none;
}

#accept-all-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.4);
}

#reject-all-cookies {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#reject-all-cookies:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

#cookie-settings {
  background: transparent;
  color: #C9A7C7;
  border: 2px solid #C9A7C7;
}

#cookie-settings:hover {
  background: rgba(201, 167, 199, 0.1);
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #8B4789;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(139, 71, 137, 0.1);
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  color: #8B4789;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  background: #F4E8F3;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #8B4789;
}

.cookie-category h3 {
  color: #8B4789;
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  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: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

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

input:checked + .cookie-slider {
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
}

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

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

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Lato', sans-serif;
}

#save-cookie-preferences {
  background: linear-gradient(135deg, #8B4789 0%, #C9A7C7 100%);
  color: white;
  border: none;
}

#save-cookie-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-card,
  .card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .value,
  .stat,
  .style {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  header nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  /* Single column layouts */
  .service-card,
  .card,
  .testimonial-card,
  .feature,
  .feature-item,
  .step,
  .value,
  .stat,
  .style,
  .team-member,
  .option,
  .info-item,
  .method {
    flex: 1 1 100%;
    max-width: none;
  }
  
  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-columns {
    flex-direction: column;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons button {
    flex: 1 1 auto;
  }
  
  /* Legal links */
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  /* Padding adjustments */
  section {
    padding: 30px 15px;
  }
  
  .hero {
    padding: 60px 15px;
  }
  
  .service-card,
  .card,
  .phase,
  .testimonial-card,
  .legal-content {
    padding: 24px;
  }
  
  /* Button sizing */
  .cta-button,
  .cta-primary,
  .cta-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  header nav,
  .cta-button,
  .cta-primary,
  .cta-secondary {
    display: none !important;
  }
}

/* Accessibility */
*:focus {
  outline: 2px solid #8B4789;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #8B4789;
  outline-offset: 2px;
}

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}