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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #2C3E50;
}

ul {
  list-style: none;
}

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

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

/* Header */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8DCC4;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #2C3E50;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

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

.mobile-menu-toggle:hover {
  background-color: #BFA888;
  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;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  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: 40px;
  height: 40px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #BFA888;
}

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

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

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

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

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

.btn-primary:hover {
  background-color: #BFA888;
  border-color: #BFA888;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

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

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

.hero h1 {
  font-size: 48px;
  color: #2C3E50;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #E8DCC4 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 48px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 0;
}

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

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

/* Value Proposition */
.value-proposition {
  background-color: #FFFFFF;
}

.value-proposition 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 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #2C3E50;
  line-height: 1.8;
}

/* Services Preview */
.services-preview {
  background-color: #FAFAFA;
}

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

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

.service-card {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.service-card p {
  color: #2C3E50;
  line-height: 1.8;
  flex-grow: 1;
}

.service-card .price {
  font-weight: 700;
  color: #BFA888;
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 0;
}

/* Process Overview */
.process-overview {
  background-color: #FFFFFF;
}

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

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

.process-step {
  flex: 1 1 250px;
  text-align: center;
  padding: 32px;
  background-color: #FAFAFA;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #BFA888;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: #2C3E50;
  line-height: 1.8;
}

/* Social Proof */
.social-proof {
  background-color: #FAFAFA;
}

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

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

.stat-card {
  flex: 1 1 200px;
  text-align: center;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #BFA888;
  font-family: 'Playfair Display', Georgia, serif;
}

.stat-label {
  font-size: 16px;
  color: #2C3E50;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

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

.testimonial-card {
  flex: 1 1 450px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #BFA888;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

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

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: #2C3E50;
  font-size: 14px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2C3E50 0%, #BFA888 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

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

.cta-content .btn-primary {
  background-color: #FFFFFF;
  color: #2C3E50;
  border-color: #FFFFFF;
}

.cta-content .btn-primary:hover {
  background-color: #E8DCC4;
  border-color: #E8DCC4;
  color: #2C3E50;
}

.cta-content .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-content .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
}

/* Company Story */
.company-story {
  background-color: #FFFFFF;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 40px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.text-section strong {
  color: #2C3E50;
  font-weight: 700;
}

/* Values */
.values {
  background-color: #FAFAFA;
}

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

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

.value-card {
  flex: 1 1 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  text-align: center;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #BFA888;
  margin-bottom: 16px;
}

.value-card p {
  color: #2C3E50;
  line-height: 1.8;
}

/* Team */
.team {
  background-color: #FFFFFF;
}

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

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

.team-member {
  flex: 1 1 250px;
  text-align: center;
  padding: 32px;
  background-color: #FAFAFA;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.team-member .role {
  color: #BFA888;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.team-member p {
  color: #2C3E50;
  line-height: 1.8;
  font-size: 14px;
}

/* Certifications */
.certifications {
  background-color: #FAFAFA;
}

.certifications h2 {
  text-align: center;
  margin-bottom: 40px;
}

.certifications-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
}

.certifications-list li {
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid #E8DCC4;
  position: relative;
  font-size: 16px;
  color: #2C3E50;
}

.certifications-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #BFA888;
  font-weight: 700;
  font-size: 20px;
}

/* Services Intro */
.services-intro {
  background-color: #FFFFFF;
}

/* Services Detailed */
.services-detailed {
  background-color: #FAFAFA;
}

.service-detailed {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  margin-bottom: 32px;
}

.service-detailed h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.service-detailed p {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detailed .price {
  font-weight: 700;
  color: #BFA888;
  font-size: 24px;
  margin-bottom: 24px;
}

.service-detailed ul {
  list-style: none;
  margin-top: 24px;
}

.service-detailed ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #2C3E50;
}

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

/* Portfolio */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.project-card {
  flex: 1 1 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.project-card h3 {
  color: #2C3E50;
  margin-bottom: 8px;
}

.project-card .category {
  color: #BFA888;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.project-card p {
  color: #2C3E50;
  line-height: 1.8;
}

.project-stats {
  background-color: #FAFAFA;
}

/* Process Timeline */
.process-intro {
  background-color: #FFFFFF;
}

.process-timeline {
  background-color: #FAFAFA;
}

.process-phase {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #BFA888;
  margin-bottom: 32px;
  position: relative;
}

.phase-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #2C3E50;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-phase h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.process-phase p {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 16px;
}

.process-phase strong {
  color: #BFA888;
  font-weight: 700;
}

/* Quality Guarantees */
.quality-guarantees {
  background-color: #FFFFFF;
}

.quality-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 250px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  text-align: center;
  margin-bottom: 20px;
}

.guarantee-card h3 {
  color: #BFA888;
  margin-bottom: 16px;
}

.guarantee-card p {
  color: #2C3E50;
  line-height: 1.8;
}

/* Contact Methods */
.contact-methods {
  background-color: #FFFFFF;
}

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

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

.contact-card {
  flex: 1 1 400px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.contact-card p {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-card strong {
  color: #BFA888;
  font-weight: 700;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #FAFAFA;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.contact-form-section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.form-notice {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  max-width: 800px;
  margin: 0 auto;
}

.form-notice p {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 16px;
}

.form-notice p:last-child {
  margin-bottom: 0;
}

/* Business Hours */
.business-hours {
  background-color: #FFFFFF;
}

.business-hours h2 {
  text-align: center;
  margin-bottom: 40px;
}

.hours-grid {
  max-width: 600px;
  margin: 0 auto 24px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 8px;
}

.hours-day {
  padding: 12px 0;
  border-bottom: 1px solid #E8DCC4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2C3E50;
}

.hours-day:last-child {
  border-bottom: none;
}

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

.business-hours .note {
  text-align: center;
  color: #BFA888;
  font-style: italic;
  font-size: 14px;
}

/* Location */
.location {
  background-color: #FAFAFA;
}

.location h2 {
  text-align: center;
  margin-bottom: 40px;
}

.location-info {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
}

.location-info p {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 16px;
}

.location-info strong {
  color: #BFA888;
  font-weight: 700;
}

/* Team Contacts */
.team-contacts {
  background-color: #FFFFFF;
}

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

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

.team-contact {
  flex: 1 1 350px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  text-align: center;
  margin-bottom: 20px;
}

.team-contact h3 {
  color: #2C3E50;
  margin-bottom: 8px;
}

.team-contact .role {
  color: #BFA888;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.team-contact p {
  color: #2C3E50;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Legal Content */
.legal-content {
  background-color: #FFFFFF;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background-color: #FAFAFA;
  border-radius: 8px;
}

.legal-section h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.legal-section p {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  margin-top: 16px;
}

.legal-section ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #2C3E50;
}

.legal-section ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #BFA888;
  font-weight: 700;
  font-size: 20px;
}

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

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

.success-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: #BFA888;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

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

.thank-you-content .subtitle {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 24px;
}

.thank-you-content p {
  font-size: 16px;
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Next Steps */
.next-steps {
  background-color: #FFFFFF;
}

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

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

.step-card {
  flex: 1 1 300px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  text-align: center;
  margin-bottom: 20px;
}

.step-card h3 {
  color: #BFA888;
  margin-bottom: 16px;
}

.step-card p {
  color: #2C3E50;
  line-height: 1.8;
}

/* Related Content */
.related-content {
  background-color: #FAFAFA;
}

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

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

.content-card {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.content-card h3 {
  color: #2C3E50;
  margin-bottom: 8px;
}

.content-card p {
  color: #2C3E50;
  line-height: 1.8;
  flex-grow: 1;
}

/* Quick Links */
.quick-links {
  background-color: #FFFFFF;
}

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

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

.link-card {
  flex: 1 1 300px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8DCC4;
  text-align: center;
  margin-bottom: 20px;
}

.link-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.link-card p {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 16px;
}

.link-card a {
  color: #BFA888;
  font-weight: 700;
  transition: color 0.3s ease;
}

.link-card a:hover {
  color: #2C3E50;
}

/* Footer */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-col p {
  color: #E8DCC4;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

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

.footer-col ul li a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 220, 196, 0.2);
  padding-top: 20px;
  text-align: center;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  color: #E8DCC4;
  font-size: 14px;
  margin-bottom: 8px;
}

.cookie-consent-text a {
  color: #BFA888;
  text-decoration: underline;
}

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

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

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

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

.cookie-reject {
  background-color: transparent;
  color: #E8DCC4;
  border: 1px solid #E8DCC4;
}

.cookie-reject:hover {
  background-color: rgba(232, 220, 196, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #E8DCC4;
  border: 1px solid #E8DCC4;
}

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8DCC4;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

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

.cookie-category h3 {
  color: #2C3E50;
  font-size: 18px;
  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-color: #E8DCC4;
  transition: 0.4s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #FFFFFF;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #BFA888;
}

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

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

.cookie-category p {
  color: #2C3E50;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

.cookie-save-preferences {
  background-color: #2C3E50;
  color: #FFFFFF;
}

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

.cookie-accept-all {
  background-color: #BFA888;
  color: #FFFFFF;
}

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

/* Responsive Design - Tablet */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .benefits-grid,
  .services-grid,
  .process-steps,
  .stats-grid,
  .values-grid,
  .team-grid,
  .portfolio-grid,
  .guarantees-grid,
  .contact-grid,
  .team-contacts-grid,
  .steps-grid,
  .content-cards,
  .links-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .process-step,
  .stat-card,
  .value-card,
  .team-member,
  .project-card,
  .guarantee-card,
  .contact-card,
  .team-contact,
  .step-card,
  .content-card,
  .link-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-text,
  .cookie-consent-buttons {
    flex: 1 1 100%;
  }
  
  .cookie-consent-buttons {
    justify-content: stretch;
  }
  
  .cookie-consent-buttons button {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 20px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions button {
    flex: 1 1 100%;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 24px;
  }
  
  .page-hero {
    padding: 40px 20px;
  }
  
  .page-hero h1 {
    font-size: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  .benefit-card,
  .service-card,
  .process-step,
  .stat-card,
  .value-card,
  .team-member,
  .project-card,
  .guarantee-card,
  .contact-card,
  .team-contact,
  .step-card,
  .content-card,
  .link-card,
  .testimonial-card {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .step-number,
  .phase-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  footer {
    padding: 40px 20px 20px;
  }
  
  .cookie-consent {
    padding: 16px;
  }
  
  .cookie-consent-text p {
    font-size: 12px;
  }
  
  .cookie-consent-buttons button {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
  
  h3 {
    font-size: 14pt;
  }
  
  a {
    text-decoration: underline;
    color: #000000;
  }
}

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

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #BFA888;
  outline-offset: 2px;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}