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

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

body {
  font-family: 'Lato', 'Georgia', serif;
  line-height: 1.8;
  color: #2C3E50;
  background-color: #F5F5F0;
  overflow-x: hidden;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F7C;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: 0.5px;
}

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #D4AF37;
}

ul {
  list-style: none;
}

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

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

/* Header - Elegant Classic */
header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #E8E4DA;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(44, 95, 124, 0.08);
}

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

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

/* Main Navigation - Desktop */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C5F7C;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

/* CTA Buttons - Elegant Style */
.cta-button, .cta-primary, .cta-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.cta-button, .cta-primary {
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-color: #2C5F7C;
}

.cta-button:hover, .cta-primary:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
  background-color: transparent;
  color: #2C5F7C;
  border-color: #2C5F7C;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #2C5F7C;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(44, 95, 124, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C5F7C;
  padding: 12px 0;
  border-bottom: 1px solid #E8E4DA;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 10px;
}

/* Hero Section - Elegant Classic */
.hero {
  background: linear-gradient(135deg, #F5F5F0 0%, #E8E4DA 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid #D4AF37;
}

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

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

.subheadline {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 40px;
  line-height: 1.6;
  font-style: italic;
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #D4AF37;
}

.trust-indicators span {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2C5F7C;
}

/* Hero Internal */
.hero-internal {
  background: linear-gradient(135deg, #F5F5F0 0%, #E8E4DA 100%);
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  border-bottom: 3px solid #D4AF37;
}

.hero-internal h1 {
  text-align: center;
  margin-bottom: 16px;
}

.hero-internal .subheadline {
  text-align: center;
  font-size: 18px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
  color: #4A5568;
}

.breadcrumb a {
  color: #2C5F7C;
}

.breadcrumb span {
  color: #D4AF37;
}

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

/* Brand Promise */
.brand-promise {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 1px solid #E8E4DA;
  border-bottom: 1px solid #E8E4DA;
}

.brand-promise h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 36px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: #F5F5F0;
  padding: 32px;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 95, 124, 0.1);
}

.value-card h3 {
  font-size: 20px;
  color: #2C5F7C;
  margin-bottom: 0;
}

/* Services Overview */
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4A5568;
}

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

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #2C5F7C;
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.12);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 22px;
  color: #2C5F7C;
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #D4AF37;
  display: block;
  margin-top: 16px;
}

.services-overview .cta-button {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 1px solid #E8E4DA;
  border-bottom: 1px solid #E8E4DA;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background-color: #F5F5F0;
  border-left: 4px solid #D4AF37;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  margin-bottom: 0;
}

/* Testimonials - High Contrast for Readability */
.testimonials {
  background-color: #F5F5F0;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 16px;
  flex-grow: 1;
}

.client-name {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2C5F7C;
  margin-bottom: 4px;
}

.client-location {
  display: block;
  font-size: 14px;
  color: #718096;
}

/* CTA Final Section */
.cta-final, .cta-start, .cta-consultation, .cta-portfolio {
  background: linear-gradient(135deg, #2C5F7C 0%, #1e4158 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-top: 3px solid #D4AF37;
}

.cta-final h2, .cta-secondary h2, .cta-start h2, .cta-consultation h2, .cta-portfolio h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-final p, .cta-start p {
  color: #F5F5F0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-final .cta-button, .cta-secondary .cta-button, .cta-start .cta-button, .cta-consultation .cta-button, .cta-portfolio .cta-button {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #2C5F7C;
  font-weight: 700;
}

.cta-final .cta-button:hover, .cta-secondary .cta-button:hover, .cta-start .cta-button:hover, .cta-consultation .cta-button:hover, .cta-portfolio .cta-button:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #2C5F7C;
}

/* Services Detailed */
.services-introduction, .process-introduction, .contact-introduction, .portfolio-introduction {
  padding: 0 20px 40px;
  margin-bottom: 40px;
  text-align: center;
}

.services-introduction p, .process-introduction p, .contact-introduction p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #4A5568;
}

.services-detailed {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border: 2px solid #E8E4DA;
  border-left: 4px solid #2C5F7C;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-left-color: #D4AF37;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
}

.service-detail h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail p {
  margin-bottom: 24px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #4A5568;
  padding-left: 8px;
}

.service-detail .price {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 24px;
}

/* Portfolio Stats */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  min-width: 180px;
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
}

.stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #2C5F7C;
  line-height: 1;
}

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

/* Project Categories */
.project-categories {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.project-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  border-color: #2C5F7C;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.12);
}

.category-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.category-card p {
  margin-bottom: 0;
  color: #4A5568;
}

/* Process Timeline */
.process-timeline {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.process-timeline h2 {
  text-align: center;
  margin-bottom: 48px;
}

.phase {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border: 2px solid #E8E4DA;
  border-left: 6px solid #2C5F7C;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.phase:hover {
  border-left-color: #D4AF37;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
}

.phase-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
}

.phase h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.phase p {
  margin-bottom: 16px;
  color: #4A5568;
}

.duration {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #718096;
  background-color: #F5F5F0;
  padding: 8px 16px;
  border-radius: 2px;
}

/* Guarantees */
.guarantees {
  background-color: #F5F5F0;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.guarantees h2 {
  text-align: center;
  margin-bottom: 48px;
}

.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.guarantee-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8E4DA;
  border-top: 4px solid #D4AF37;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 95, 124, 0.1);
}

.guarantee-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.guarantee-card p {
  margin-bottom: 0;
  color: #4A5568;
}

/* Contact Information */
.contact-information {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-information h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-block {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-block:hover {
  border-color: #2C5F7C;
  transform: translateY(-4px);
}

.contact-block h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2C5F7C;
}

.contact-block p {
  margin-bottom: 0;
  color: #4A5568;
}

.contact-block a {
  color: #2C5F7C;
  font-weight: 600;
}

.contact-block a:hover {
  color: #D4AF37;
}

/* Showroom Visit */
.showroom-visit {
  background-color: #F5F5F0;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.showroom-visit h2 {
  margin-bottom: 24px;
}

.showroom-visit p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #4A5568;
}

/* Consultation Types */
.consultation-types {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.consultation-types h2 {
  text-align: center;
  margin-bottom: 48px;
}

.consultation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.consultation-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.consultation-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 95, 124, 0.1);
}

.consultation-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.consultation-card p {
  margin-bottom: 0;
  flex-grow: 1;
  color: #4A5568;
}

.consultation-card .duration {
  margin-top: 8px;
}

/* Service Areas */
.service-areas {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-top: 1px solid #E8E4DA;
  border-bottom: 1px solid #E8E4DA;
}

.service-areas h2 {
  margin-bottom: 32px;
}

.service-areas p {
  max-width: 600px;
  margin: 0 auto 16px;
  font-size: 16px;
  color: #4A5568;
}

.service-areas p strong {
  color: #2C5F7C;
  font-weight: 700;
}

/* Legal Pages */
.hero-legal {
  background: linear-gradient(135deg, #F5F5F0 0%, #E8E4DA 100%);
  padding: 60px 20px;
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 3px solid #D4AF37;
}

.hero-legal h1 {
  margin-bottom: 16px;
}

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

.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #E8E4DA;
  padding-bottom: 12px;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

/* Brand Story & Philosophy */
.brand-story, .philosophy {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 1px solid #E8E4DA;
  border-bottom: 1px solid #E8E4DA;
}

.brand-story h2, .philosophy h2 {
  text-align: center;
  margin-bottom: 32px;
}

.brand-story p, .philosophy p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: #4A5568;
  text-align: center;
}

/* Values Section (Chi Siamo) */
.values {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Team Section */
.team {
  background-color: #F5F5F0;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.team h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #4A5568;
  text-align: center;
}

/* Thank You Page */
.hero-thankyou {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F5F5F0 0%, #E8E4DA 100%);
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #D4AF37;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.hero-thankyou h1 {
  margin-bottom: 24px;
}

.confirmation-message {
  font-size: 20px;
  color: #4A5568;
  max-width: 600px;
  margin: 0 auto 32px;
}

.confirmation-details {
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.confirmation-details p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  color: #4A5568;
}

/* Next Steps */
.next-steps {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  max-width: 350px;
  background-color: #F5F5F0;
  padding: 32px;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.step-card:hover {
  border-color: #2C5F7C;
  transform: translateY(-4px);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #2C5F7C;
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-card p {
  margin-bottom: 0;
  color: #4A5568;
}

/* While You Wait */
.while-you-wait {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.while-you-wait h2 {
  text-align: center;
  margin-bottom: 48px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8E4DA;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.suggestion-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 95, 124, 0.1);
}

.suggestion-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.suggestion-card p {
  margin-bottom: 16px;
  color: #4A5568;
}

.link-button {
  display: inline-block;
  padding: 10px 24px;
  background-color: #2C5F7C;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.link-button:hover {
  background-color: #D4AF37;
  transform: translateY(-2px);
}

/* Footer - Elegant Classic */
footer {
  background-color: #2C5F7C;
  color: #F5F5F0;
  padding: 60px 20px 20px;
  border-top: 3px solid #D4AF37;
}

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

.footer-column {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
}

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

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4AF37;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 14px;
  color: #E8E4DA;
  margin-bottom: 12px;
  line-height: 1.8;
}

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

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

.footer-column ul li a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(245, 245, 240, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

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

.legal-links a {
  font-size: 14px;
  color: #E8E4DA;
  transition: all 0.3s ease;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 3px solid #D4AF37;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(44, 95, 124, 0.15);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text a {
  color: #2C5F7C;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.accept-all {
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-color: #2C5F7C;
}

.accept-all:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
}

.reject-all {
  background-color: transparent;
  color: #2C5F7C;
  border-color: #2C5F7C;
}

.reject-all:hover {
  background-color: #2C5F7C;
  color: #FFFFFF;
}

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

.cookie-settings:hover {
  border-color: #2C5F7C;
  color: #2C5F7C;
}

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

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

.modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 2px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #718096;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #2C5F7C;
  transform: rotate(90deg);
}

.modal-content h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F5F5F0;
  border: 1px solid #E8E4DA;
  border-radius: 2px;
}

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

.category-header h3 {
  font-size: 18px;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background-color: #2C5F7C;
}

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

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active .toggle-slider {
  transform: translateX(24px);
}

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

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

.modal-buttons button {
  padding: 12px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.save-preferences {
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-color: #2C5F7C;
}

.save-preferences:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .subheadline {
    font-size: 18px;
  }

  .hero {
    padding: 60px 20px;
  }

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  header .cta-button {
    display: none;
  }

  /* Adjust header for mobile */
  header .container {
    justify-content: center;
  }

  /* Card layouts - single column on mobile */
  .values-grid,
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .categories-grid,
  .guarantees-grid,
  .contact-grid,
  .consultation-grid,
  .stats-grid,
  .steps-grid,
  .suggestions-grid {
    flex-direction: column;
  }

  .value-card,
  .service-card,
  .benefit-card,
  .testimonial-card,
  .category-card,
  .guarantee-card,
  .contact-block,
  .consultation-card,
  .stat,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-primary,
  .cta-secondary,
  .cta-button {
    width: 100%;
    text-align: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .phase {
    padding: 24px;
  }

  .service-detail {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .benefit-card {
    flex: 1 1 calc(50% - 12px);
  }

  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 12px);
  }

  .guarantee-card,
  .consultation-card {
    flex: 1 1 calc(50% - 12px);
  }
}

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

.hero-content,
.service-card,
.benefit-card,
.testimonial-card,
.phase {
  animation: fadeIn 0.6s ease-out;
}

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

  body {
    color: #000000;
    background-color: #FFFFFF;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .testimonial-card p,
  .service-card p,
  .benefit-card p {
    color: #000000;
  }
}