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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

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

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

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

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

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

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

a:hover {
  color: #2C7A8C;
}

ul {
  list-style: none;
}

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

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

/* Header - Elegant Classic */
header {
  background-color: #ffffff;
  border-bottom: 2px solid #e8e4dc;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  color: #2c2c2c;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.main-nav a:hover {
  color: #1B4B5A;
  border-bottom-color: #F4A261;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1B4B5A;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(27, 75, 90, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  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;
  color: #2c2c2c;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 20px;
  color: #2c2c2c;
  padding: 12px 0;
  border-bottom: 1px solid #e8e4dc;
  transition: all 0.3s ease;
}

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

/* Buttons - Elegant Classic Style */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #1B4B5A;
  color: #ffffff;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  border: 2px solid #1B4B5A;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(27, 75, 90, 0.2);
}

.btn-primary:hover {
  background-color: #2C7A8C;
  border-color: #2C7A8C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 75, 90, 0.3);
  color: #ffffff;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: #1B4B5A;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  border: 2px solid #1B4B5A;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  background-color: #1B4B5A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 75, 90, 0.2);
}

.btn-link {
  display: inline-block;
  color: #1B4B5A;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #F4A261;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.btn-link:hover {
  color: #2C7A8C;
  border-bottom-width: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1e8 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid #e8e4dc;
}

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

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

.hero-subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e8e4dc;
}

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

.badge-number {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 36px;
  font-weight: 600;
  color: #1B4B5A;
}

.badge-icon {
  font-size: 32px;
  color: #F4A261;
}

.badge-label {
  font-size: 14px;
  color: #6a6a6a;
  text-align: center;
  letter-spacing: 0.03em;
}

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

.page-subtitle {
  font-size: 20px;
  color: #6a6a6a;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

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

.service-card {
  background-color: #faf8f5;
  border: 2px solid #e8e4dc;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  border-color: #F4A261;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 75, 90, 0.1);
}

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

.service-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-price {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1B4B5A;
  margin-top: auto;
  margin-bottom: 16px;
}

/* Why Us Section */
.why-us {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1e8 100%);
  margin-bottom: 60px;
}

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

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

.feature {
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #e8e4dc;
  border-radius: 4px;
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature:hover {
  border-color: #F4A261;
  box-shadow: 0 6px 20px rgba(27, 75, 90, 0.08);
}

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

.feature p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background-color: #ffffff;
  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 {
  background-color: #faf8f5;
  padding: 32px;
  border-left: 4px solid #F4A261;
  border-radius: 4px;
  flex: 1 1 400px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  position: relative;
}

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

.testimonial-author {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  color: #1B4B5A;
  margin-bottom: 4px;
}

.testimonial-project {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1B4B5A 0%, #2C7A8C 100%);
  margin-bottom: 60px;
  text-align: center;
  border-radius: 4px;
}

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

.cta-content p {
  color: #f0f0f0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn-primary {
  background-color: #F4A261;
  border-color: #F4A261;
  color: #1a1a1a;
}

.cta-section .btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1B4B5A;
}

.cta-info {
  color: #f0f0f0;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 0;
}

/* Company Story Section */
.company-story,
.values,
.team,
.portfolio-intro,
.services-intro,
.process-intro,
.contact-intro {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.company-story h2,
.values h2,
.team h2,
.portfolio-intro h2,
.services-intro h2,
.process-intro h2,
.contact-intro h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

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

.text-section blockquote {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 22px;
  font-style: italic;
  color: #1B4B5A;
  padding: 24px 32px;
  border-left: 4px solid #F4A261;
  background-color: #faf8f5;
  margin: 32px 0;
}

/* Values Grid */
.values {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1e8 100%);
  padding: 60px 20px;
}

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

.value-card {
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #e8e4dc;
  border-radius: 4px;
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  border-color: #F4A261;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 75, 90, 0.1);
}

.value-card h3 {
  color: #1B4B5A;
  font-size: 20px;
  margin-bottom: 8px;
}

.value-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
}

/* Service Detail */
.service-detail {
  padding: 40px 20px;
  margin-bottom: 40px;
  background-color: #ffffff;
  border-top: 1px solid #e8e4dc;
}

.service-detail h2 {
  color: #1B4B5A;
  margin-bottom: 16px;
}

.service-tagline {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 20px;
  font-style: italic;
  color: #6a6a6a;
  margin-bottom: 24px;
}

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

.service-detail ul li {
  list-style: disc;
  color: #4a4a4a;
  margin-bottom: 8px;
  line-height: 1.6;
}

.service-timeline {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  color: #1B4B5A;
  font-weight: 600;
  margin-top: 24px;
}

/* Project Showcase */
.project-showcase {
  padding: 60px 20px;
  margin-bottom: 40px;
  background-color: #faf8f5;
}

.project-showcase h2 {
  color: #1B4B5A;
  margin-bottom: 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #6a6a6a;
}

.project-meta span {
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #e8e4dc;
  border-radius: 2px;
}

.project-showcase blockquote {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  font-style: italic;
  color: #1B4B5A;
  padding: 24px 32px;
  border-left: 4px solid #F4A261;
  background-color: #ffffff;
  margin: 32px 0;
}

/* Results Summary */
.results-summary {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1B4B5A 0%, #2C7A8C 100%);
  margin-bottom: 60px;
}

.results-summary h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}

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

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

.stat-number {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 48px;
  font-weight: 600;
  color: #F4A261;
}

.stat-label {
  font-size: 16px;
  color: #f0f0f0;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Process Steps */
.process-step {
  padding: 40px 20px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:nth-child(even) {
  background-color: #faf8f5;
}

.step-number {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 72px;
  font-weight: 300;
  color: #e8e4dc;
  margin-bottom: 16px;
  line-height: 1;
}

.step-tagline {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  font-style: italic;
  color: #6a6a6a;
  margin-bottom: 16px;
}

.step-duration {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  color: #1B4B5A;
  font-weight: 600;
  margin-top: 16px;
}

/* Contact Form Section */
.contact-form-section,
.contact-methods,
.office-location {
  padding: 60px 20px;
  margin-bottom: 40px;
}

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

.form-placeholder {
  max-width: 600px;
  margin: 32px auto;
  padding: 48px;
  background-color: #faf8f5;
  border: 2px solid #e8e4dc;
  border-radius: 4px;
  text-align: center;
}

.form-placeholder p {
  margin-bottom: 16px;
}

.form-placeholder .btn-primary {
  margin-top: 24px;
}

/* Contact Grid */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-method {
  background-color: #faf8f5;
  padding: 32px;
  border: 2px solid #e8e4dc;
  border-radius: 4px;
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-method h3 {
  color: #1B4B5A;
  margin-bottom: 12px;
}

.contact-method p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
}

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e8e4dc;
  border: 2px solid #d0ccc0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  color: #6a6a6a;
  font-size: 18px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.legal-content .text-section h2 {
  color: #1B4B5A;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content .text-section h2:first-child {
  margin-top: 0;
}

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

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

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

.thank-you-subtitle {
  font-size: 20px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.next-steps,
.while-you-wait,
.contact-reminder {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.next-steps h2,
.while-you-wait h2,
.contact-reminder h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step-card,
.link-card {
  background-color: #faf8f5;
  padding: 32px;
  border: 2px solid #e8e4dc;
  border-radius: 4px;
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-card:hover,
.link-card:hover {
  border-color: #F4A261;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 75, 90, 0.1);
}

.step-card h3,
.link-card h3 {
  color: #1B4B5A;
  font-size: 20px;
  margin-bottom: 8px;
}

.step-time {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 14px;
  color: #1B4B5A;
  font-weight: 600;
  margin-top: 12px;
}

.contact-info {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: #faf8f5;
  border: 2px solid #e8e4dc;
  border-radius: 4px;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #d0d0d0;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-column h4 {
  font-family: 'Garamond', 'Georgia', serif;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 8px;
}

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

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

.footer-nav a:hover {
  color: #F4A261;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #3a3a3a;
  text-align: center;
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 3px solid #F4A261;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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;
}

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

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

.cookie-buttons button {
  padding: 10px 24px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 14px;
  border: 2px solid #1B4B5A;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.cookie-accept {
  background-color: #1B4B5A;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #2C7A8C;
  border-color: #2C7A8C;
}

.cookie-reject {
  background-color: transparent;
  color: #1B4B5A;
}

.cookie-reject:hover {
  background-color: #f5f1e8;
}

.cookie-settings {
  background-color: transparent;
  color: #1B4B5A;
}

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: #6a6a6a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  color: #1B4B5A;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #faf8f5;
  border: 1px solid #e8e4dc;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d0ccc0;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2C7A8C;
}

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

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

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

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

.cookie-save,
.cookie-accept-all {
  padding: 10px 24px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 14px;
  border: 2px solid #1B4B5A;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.cookie-save {
  background-color: transparent;
  color: #1B4B5A;
}

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

.cookie-accept-all {
  background-color: #1B4B5A;
  color: #ffffff;
}

.cookie-accept-all:hover {
  background-color: #2C7A8C;
  border-color: #2C7A8C;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Show Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide Desktop Navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Mobile Header */
  .header-content {
    flex-direction: row;
    justify-content: center;
    padding-right: 60px;
  }
  
  /* Mobile Sections */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta a {
    width: 100%;
  }
  
  .trust-badges {
    gap: 32px;
  }
  
  .badge-number {
    font-size: 28px;
  }
  
  /* Mobile Grids */
  .services-grid,
  .features-grid,
  .values-grid,
  .contact-grid,
  .steps-grid,
  .links-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .service-card,
  .feature,
  .value-card,
  .contact-method,
  .step-card,
  .link-card {
    max-width: 100%;
  }
  
  /* Mobile Testimonials */
  .testimonials-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  /* Mobile Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Mobile Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .cookie-category-header {
    flex-wrap: wrap;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-save,
  .cookie-accept-all {
    width: 100%;
  }
  
  /* Mobile Stats */
  .stats-grid {
    gap: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Mobile Text Sections */
  .text-section blockquote,
  .project-showcase blockquote {
    font-size: 18px;
    padding: 20px 24px;
  }
  
  .step-number {
    font-size: 56px;
  }
  
  /* Mobile CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .badge-number {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .service-card,
  .feature,
  .value-card,
  .testimonial-card,
  .contact-method {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 20px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .header-cta,
  .hero-cta,
  .cta-section,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
  
  h3 {
    font-size: 14pt;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}