/* ============================================
   FANCY DIVIDEND - PROFESSIONAL CORPORATE CSS
   Wedding Planning Agency - Berlin
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  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;
  line-height: 1.2;
  color: #1A252F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #34495E;
}

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

a:hover {
  color: #6A3568;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #34495E;
}

strong {
  font-weight: 700;
  color: #1A252F;
}

blockquote {
  border-left: 4px solid #8B4789;
  padding: 20px 24px;
  margin: 32px 0;
  background-color: #F8F9FA;
  font-style: italic;
  color: #34495E;
  font-size: 18px;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* ============================================
   HEADER - PROFESSIONAL CORPORATE
   ============================================ */

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  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: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #8B4789;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8B4789;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-button {
  background-color: #8B4789;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #8B4789;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #6A3568;
  border-color: #6A3568;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 71, 137, 0.3);
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #8B4789;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 32px 32px;
}

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

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

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

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

.mobile-nav a {
  color: #2C3E50;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B4789;
  padding-left: 8px;
}

/* ============================================
   HERO SECTIONS - PROFESSIONAL CORPORATE
   ============================================ */

.hero {
  background: linear-gradient(135deg, #8B4789 0%, #6A3568 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: #F4E8E0;
  margin-bottom: 32px;
  font-weight: 400;
}

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

.trust-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.page-hero {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero .hero-subtitle {
  color: #C9A96E;
  font-size: 18px;
}

.last-updated {
  color: #C9A96E;
  font-size: 14px;
  margin-top: 8px;
}

/* ============================================
   BUTTONS - PROFESSIONAL CORPORATE
   ============================================ */

.btn-primary {
  display: inline-block;
  background-color: #8B4789;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #8B4789;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #6A3568;
  border-color: #6A3568;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.3);
  color: #FFFFFF;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #8B4789;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #8B4789;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #8B4789;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.3);
}

.btn-link {
  display: inline-block;
  color: #8B4789;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   SECTIONS - FLEXBOX LAYOUTS ONLY
   ============================================ */

.introduction,
.services-intro,
.story,
.philosophy,
.portfolio-intro,
.process-intro,
.contact-options-section,
.office-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.section-subtitle {
  font-size: 18px;
  color: #7F8C8D;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
}

.section-label {
  display: inline-block;
  color: #8B4789;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* ============================================
   BENEFITS & LISTS
   ============================================ */

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.benefits-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #34495E;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B4789;
  font-weight: bold;
  font-size: 18px;
}

/* ============================================
   SERVICES - FLEXBOX GRID
   ============================================ */

.services-overview {
  padding: 80px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: center;
}

.service-card {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

.service-card h3 {
  color: #1A252F;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  color: #34495E;
  flex-grow: 1;
}

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

/* ============================================
   PROCESS STEPS - FLEXBOX
   ============================================ */

.process-preview {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: center;
}

.step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #8B4789 0%, #6A3568 100%);
  color: #FFFFFF;
  border-radius: 50%;
  line-height: 64px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A252F;
}

.step p {
  color: #7F8C8D;
  font-size: 15px;
}

/* ============================================
   TESTIMONIALS - FLEXBOX WITH PROPER CONTRAST
   ============================================ */

.testimonials {
  padding: 80px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: center;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #1A252F;
  font-size: 16px;
}

.testimonial-author span {
  color: #7F8C8D;
  font-size: 14px;
}

.rating {
  color: #C9A96E;
  font-size: 20px;
  letter-spacing: 2px;
}

/* ============================================
   WHY CHOOSE US - FLEXBOX
   ============================================ */

.why-choose-us {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 64px;
  justify-content: center;
}

.reason {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.reason:hover {
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.reason p {
  color: #7F8C8D;
}

.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  padding-top: 48px;
  border-top: 2px solid #E8E8E8;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #8B4789;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #7F8C8D;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CONTACT CTA - FLEXBOX
   ============================================ */

.contact-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B4789 0%, #6A3568 100%);
  color: #FFFFFF;
  text-align: center;
}

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

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

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

.cta-buttons .btn-primary {
  background-color: #FFFFFF;
  color: #8B4789;
  border-color: #FFFFFF;
}

.cta-buttons .btn-primary:hover {
  background-color: #F4E8E0;
  border-color: #F4E8E0;
}

.cta-buttons .btn-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #8B4789;
}

.office-hours,
.contact-info,
.trust-note,
.social-proof {
  color: #F4E8E0;
  font-size: 14px;
  margin-top: 16px;
}

/* ============================================
   TEAM - FLEXBOX GRID
   ============================================ */

.team {
  padding: 80px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

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

.team-member {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

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

.position {
  display: block;
  color: #8B4789;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-philosophy {
  max-width: 800px;
  margin: 48px auto 0;
  font-size: 18px;
  color: #34495E;
  font-style: italic;
}

/* ============================================
   EXPERTISE - FLEXBOX
   ============================================ */

.expertise {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.expertise-item {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.expertise-item:hover {
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

/* ============================================
   SERVICES DETAILED - FLEXBOX
   ============================================ */

.services-detailed {
  padding: 80px 20px;
  background-color: #F8F9FA;
}

.service-full {
  background-color: #FFFFFF;
  padding: 48px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  position: relative;
}

.service-full h2 {
  color: #1A252F;
  margin-bottom: 16px;
}

.service-includes {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-includes li {
  padding-left: 32px;
  position: relative;
  color: #34495E;
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B4789;
  font-weight: bold;
  font-size: 18px;
}

.service-price {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: #8B4789;
  margin: 24px 0 16px;
}

.service-duration {
  display: block;
  color: #7F8C8D;
  font-size: 14px;
  margin-bottom: 24px;
}

.service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: #C9A96E;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================
   PACKAGES - FLEXBOX
   ============================================ */

.packages {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

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

.package-card {
  background-color: #F8F9FA;
  padding: 48px 32px;
  border-radius: 8px;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.package-card.featured {
  border-color: #8B4789;
  background-color: #FFFFFF;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.2);
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.package-card h3 {
  color: #1A252F;
  font-size: 24px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  flex-grow: 1;
}

.package-card ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #34495E;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B4789;
  font-weight: bold;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: #8B4789;
}

.savings {
  display: inline-block;
  background-color: #8B4789;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================
   FAQ - FLEXBOX
   ============================================ */

.faq,
.process-faq,
.contact-faq {
  padding: 80px 20px;
  background-color: #F8F9FA;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-item h3 {
  color: #1A252F;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #34495E;
  margin-bottom: 0;
}

/* ============================================
   PORTFOLIO - FLEXBOX GRID
   ============================================ */

.portfolio-grid-section {
  padding: 80px 20px;
  background-color: #F8F9FA;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.portfolio-item {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 350px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

.portfolio-item h3 {
  color: #1A252F;
  margin-bottom: 12px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.portfolio-tags span {
  background-color: #F8F9FA;
  color: #8B4789;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* ============================================
   FEATURED WEDDING
   ============================================ */

.featured-wedding {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.wedding-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.detail {
  flex: 1 1 200px;
}

.services-provided {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.services-provided li {
  padding-left: 32px;
  position: relative;
  color: #34495E;
}

.services-provided li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B4789;
  font-weight: bold;
  font-size: 18px;
}

.couple-quote {
  background-color: #F8F9FA;
  border-left: 4px solid #8B4789;
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #34495E;
  font-size: 18px;
}

/* ============================================
   STYLES SHOWCASE - FLEXBOX
   ============================================ */

.styles-showcase {
  padding: 80px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.style-card {
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.style-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

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

/* ============================================
   PROCESS DETAILED - FLEXBOX
   ============================================ */

.process-steps-detailed {
  padding: 80px 20px;
  background-color: #F8F9FA;
}

.process-step {
  background-color: #FFFFFF;
  padding: 48px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 48px;
  position: relative;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E8E8E8;
}

.step-header .step-number {
  margin-bottom: 0;
}

.step-header h2 {
  flex: 1 1 300px;
  margin-bottom: 0;
}

.step-duration {
  color: #7F8C8D;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.step-content h3 {
  color: #8B4789;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.step-content ul {
  margin: 16px 0;
}

.step-outcome {
  background-color: #F8F9FA;
  padding: 20px 24px;
  border-left: 4px solid #8B4789;
  margin-top: 32px;
  border-radius: 4px;
}

.step-outcome strong {
  color: #8B4789;
}

/* ============================================
   COMMUNICATION - FLEXBOX
   ============================================ */

.communication {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.communication-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: center;
}

.communication-item {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.communication-item:hover {
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.communication-commitment {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

/* ============================================
   EXPECTATIONS - FLEXBOX
   ============================================ */

.expectations {
  padding: 80px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.expectations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.expectation {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.expectation:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

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

/* ============================================
   REFERENZEN - REVIEWS
   ============================================ */

.statistics,
.featured-testimonials,
.testimonials-grid-section {
  padding: 80px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
  max-width: 250px;
}

.featured-testimonials {
  background-color: #F8F9FA;
}

.testimonial-featured {
  background-color: #FFFFFF;
  padding: 48px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-featured .testimonial-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 24px;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #E8E8E8;
}

.testimonial-meta strong {
  color: #1A252F;
  font-size: 18px;
}

.testimonial-meta span {
  color: #7F8C8D;
  font-size: 14px;
}

.testimonials-grid-section {
  background-color: #FFFFFF;
}

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

/* ============================================
   AWARDS & PLATFORMS - FLEXBOX
   ============================================ */

.awards {
  padding: 80px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.award-item {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.award-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

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

.review-platforms {
  padding: 80px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

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

.platform {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 40px 32px;
  background-color: #F8F9FA;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.platform:hover {
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.platform-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.rating-number {
  font-size: 36px;
  font-weight: 700;
  color: #8B4789;
}

.rating-stars {
  color: #C9A96E;
  font-size: 24px;
  letter-spacing: 4px;
}

/* ============================================
   CLIENT TYPES - FLEXBOX
   ============================================ */

.client-types {
  padding: 80px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.client-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.client-type {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.client-type:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

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

.confidentiality-note {
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
  color: #7F8C8D;
}

/* ============================================
   CONTACT PAGE - FLEXBOX
   ============================================ */

.contact-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.contact-option {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(139, 71, 137, 0.15);
}

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

.recommended {
  display: inline-block;
  background-color: #C9A96E;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ============================================
   CONTACT FORM - DISPLAY ONLY
   ============================================ */

.contact-form-section {
  padding: 80px 20px;
  background-color: #F8F9FA;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  color: #7F8C8D;
  margin-bottom: 32px;
}

.form-container {
  background-color: #FFFFFF;
  padding: 48px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-note {
  background-color: #FFF3CD;
  border: 1px solid #FFE69C;
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.form-note p {
  color: #856404;
  font-size: 14px;
  margin-bottom: 0;
}

.form-fields-display {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: #1A252F;
  font-weight: 600;
  font-size: 14px;
}

.field-placeholder {
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  background-color: #F8F9FA;
  color: #7F8C8D;
  font-size: 15px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #8B4789;
  border-radius: 4px;
  display: inline-block;
}

.submit-area {
  margin-top: 32px;
}

.button-placeholder {
  background-color: #8B4789;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: not-allowed;
  opacity: 0.7;
}

.response-note {
  text-align: center;
  color: #7F8C8D;
  font-size: 14px;
  margin-top: 24px;
}

/* ============================================
   CONTACT INFO - FLEXBOX
   ============================================ */

.contact-info-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.info-block {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.info-block:hover {
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.info-block h3 {
  color: #8B4789;
  margin-bottom: 16px;
  font-size: 18px;
}

.info-block p {
  color: #34495E;
  font-size: 15px;
}

/* ============================================
   OFFICE FEATURES
   ============================================ */

.office-features {
  background-color: #F8F9FA;
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
}

.office-features h3 {
  color: #8B4789;
  margin-bottom: 16px;
}

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

.office-features ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #34495E;
}

.office-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B4789;
  font-weight: bold;
  font-size: 18px;
}

.appointment-note {
  background-color: #FFFFFF;
  border-left: 4px solid #8B4789;
  padding: 20px 24px;
  margin-top: 32px;
  border-radius: 4px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #8B4789 0%, #6A3568 100%);
  color: #FFFFFF;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  color: #8B4789;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 32px;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.next-steps,
.while-waiting,
.inspiration-section,
.contact-info-brief,
.social-proof-section {
  padding: 80px 20px;
}

.steps-grid,
.actions-grid,
.inspiration-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step,
.action-card,
.inspiration-item {
  flex: 1 1 280px;
  max-width: 340px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step-num {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #8B4789;
  color: #FFFFFF;
  border-radius: 50%;
  line-height: 48px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.response-time,
.email-reminder,
.section-intro,
.inspiration-tip {
  text-align: center;
  color: #7F8C8D;
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-quick {
  max-width: 600px;
  margin: 32px auto;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-bottom: 48px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-quote {
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
  font-style: italic;
  color: #34495E;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.legal-content .content-wrapper {
  max-width: 900px;
}

.legal-content h2 {
  color: #1A252F;
  margin-top: 48px;
  margin-bottom: 24px;
  padding-top: 32px;
  border-top: 2px solid #E8E8E8;
}

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

.legal-content h3 {
  color: #8B4789;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0 20px 24px;
}

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

.cookie-table {
  margin: 32px 0;
}

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

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

.cookie-table th {
  background-color: #8B4789;
  color: #FFFFFF;
  font-weight: 600;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   TIMELINE - FLEXBOX
   ============================================ */

.timeline,
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.milestone,
.timeline-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.milestone:hover,
.timeline-step:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(8px);
}

.year,
.step-num {
  flex-shrink: 0;
}

.year {
  font-size: 28px;
  font-weight: 700;
  color: #8B4789;
  min-width: 80px;
}

.milestone h3,
.timeline-step h3 {
  color: #1A252F;
  margin-bottom: 8px;
}

.milestone p,
.timeline-step p {
  color: #7F8C8D;
  margin-bottom: 0;
}

/* ============================================
   VALUES & PRINCIPLES - FLEXBOX
   ============================================ */

.values,
.principles {
  margin: 32px 0;
}

.values h3,
.principles h3 {
  color: #8B4789;
  margin-bottom: 24px;
}

.values ul,
.principles ul {
  list-style: none;
  padding: 0;
}

.values ul li,
.principles ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #34495E;
}

.values ul li::before,
.principles ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #8B4789;
  font-size: 14px;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 48px 0;
}

.principle {
  flex: 1 1 300px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.principle:hover {
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

/* ============================================
   FOOTER - FLEXBOX
   ============================================ */

footer {
  background-color: #1A252F;
  color: #FFFFFF;
  padding: 60px 20px 20px;
}

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

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

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

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

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

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

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

.footer-column a:hover {
  color: #C9A96E;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #C9A96E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom p {
  color: #7F8C8D;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  color: #7F8C8D;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #C9A96E;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A252F;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  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;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  flex: 1 1 400px;
  color: #BDC3C7;
  font-size: 14px;
}

.cookie-banner-text a {
  color: #C9A96E;
  text-decoration: underline;
}

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

.cookie-banner-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: #8B4789;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #6A3568;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.cookie-settings:hover {
  background-color: #C9A96E;
  color: #FFFFFF;
}

/* ============================================
   COOKIE MODAL
   ============================================ */

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

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

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

.cookie-modal-header {
  padding: 24px 32px;
  border-bottom: 2px solid #E8E8E8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #7F8C8D;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #1A252F;
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

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

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

.cookie-toggle {
  width: 50px;
  height: 28px;
  background-color: #BDC3C7;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #8B4789;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(22px);
}

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

.cookie-modal-footer {
  padding: 24px 32px;
  border-top: 2px solid #E8E8E8;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-footer button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #8B4789;
  color: #FFFFFF;
}

.cookie-save:hover {
  background-color: #6A3568;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 60px 20px;
  }
  
  /* Flexbox - Mobile Columns */
  .services-grid,
  .process-steps,
  .reasons-grid,
  .team-grid,
  .expertise-grid,
  .portfolio-grid,
  .styles-grid,
  .packages-grid,
  .testimonials-slider,
  .testimonials-grid,
  .awards-grid,
  .platforms-grid,
  .client-types-grid,
  .contact-options-grid,
  .contact-info-grid,
  .expectations-grid,
  .communication-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .step,
  .reason,
  .team-member,
  .expertise-item,
  .portfolio-item,
  .style-card,
  .package-card,
  .testimonial-card,
  .award-item,
  .platform,
  .client-type,
  .contact-option,
  .info-block,
  .expectation,
  .communication-item {
    max-width: 100%;
    width: 100%;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Stats */
  .statistics {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Process Steps */
  .step-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-buttons button {
    width: 100%;
  }
  
  /* Tables */
  .cookie-table table {
    font-size: 14px;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 12px 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .service-card:hover,
  .portfolio-item:hover,
  .team-member:hover {
    transform: translateY(-12px);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   SMOOTH SCROLLING & ACCESSIBILITY
   ============================================ */

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

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background-color: #8B4789;
  color: #FFFFFF;
}

/* End of CSS */