/* ===================================
   SILENT TRIBOR - SCANDINAVIAN CLEAN DESIGN
   Complete CSS Stylesheet
   =================================== */

/* CSS RESET & BASE */
* {
  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, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  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: 600;
  line-height: 1.3;
  color: #1E3A5F;
  margin-bottom: 16px;
}

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

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

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

p {
  margin-bottom: 16px;
  color: #4a5568;
  line-height: 1.7;
}

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

a:hover {
  color: #C7A55E;
}

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

li {
  margin-bottom: 8px;
  color: #4a5568;
}

strong {
  color: #1E3A5F;
  font-weight: 600;
}

em {
  font-style: italic;
  color: #718096;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.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: 40px;
  width: auto;
}

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

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

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

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background-color: #1E3A5F;
  color: #ffffff;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  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: none;
  border: none;
  font-size: 32px;
  color: #1E3A5F;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

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

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 0;
  text-align: center;
}

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

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

.subheadline {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-badge {
  display: inline-block;
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #1E3A5F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-top: 24px;
}

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

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

.btn-primary {
  background-color: #1E3A5F;
  color: #ffffff;
  border-color: #1E3A5F;
}

.btn-primary:hover {
  background-color: #C7A55E;
  border-color: #C7A55E;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(199, 165, 94, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1E3A5F;
  border-color: #1E3A5F;
}

.btn-secondary:hover {
  background-color: #1E3A5F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(30, 58, 95, 0.2);
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.three-columns,
.four-steps,
.principles-grid,
.pillars-grid,
.stats-grid,
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.column,
.step,
.principle,
.pillar,
.stat {
  flex: 1 1 280px;
  min-width: 0;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.column:hover,
.step:hover,
.principle:hover,
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.two-columns .column {
  flex: 1 1 45%;
}

/* SERVICES GRID */
.services-grid,
.content-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.service-card,
.card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #C7A55E;
}

.service-card h3 {
  color: #1E3A5F;
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #C7A55E;
  margin-bottom: 16px;
  display: block;
}

/* BADGE */
.badge {
  display: inline-block;
  background-color: #C7A55E;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #f7fafc;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-left: 4px solid #C7A55E;
}

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

.testimonial-card strong {
  color: #1E3A5F;
  font-style: normal;
  font-size: 16px;
  display: block;
  margin-top: 16px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.value-proposition h2 {
  max-width: 700px;
  margin: 0 auto 16px;
}

.value-proposition > .container > p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4a5568;
}

/* TRANSFORMATION BENEFITS */
.transformation-benefits {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 60px 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 32px auto 0;
}

.benefits-list li {
  background-color: #ffffff;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid #C7A55E;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefits-list li::before {
  content: '✓';
  color: #C7A55E;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.milestone {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #C7A55E;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.milestone h3 {
  font-size: 32px;
  color: #C7A55E;
  margin-bottom: 8px;
}

/* PROCESS / PHASES */
.process,
.phase {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.phase {
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.phase::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 24px;
  width: 24px;
  height: 24px;
  background-color: #C7A55E;
  border-radius: 50%;
}

.phase:hover {
  border-color: #C7A55E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* TECHNIQUES LIST */
.techniques ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 32px auto 0;
}

.techniques li {
  background-color: #ffffff;
  padding: 20px 24px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #1E3A5F;
  transition: all 0.3s ease;
}

.techniques li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* SERVICE DETAIL */
.service-detail {
  background-color: #ffffff;
  padding: 48px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.service-detail h2 {
  margin-bottom: 12px;
}

.service-detail h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1E3A5F;
}

.service-detail ul {
  margin-top: 16px;
  margin-bottom: 24px;
}

.service-detail .btn {
  margin-top: 24px;
}

/* STATISTICS */
.statistics {
  background: linear-gradient(135deg, #1E3A5F 0%, #2d5a8f 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.statistics h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

.stats-grid {
  justify-content: center;
}

.stat {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.stat h3 {
  font-size: 48px;
  color: #C7A55E;
  margin-bottom: 8px;
}

.stat p {
  color: #ffffff;
  font-size: 18px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #1E3A5F 0%, #2d5a8f 100%);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

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

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

.cta-banner .btn-primary {
  background-color: #C7A55E;
  border-color: #C7A55E;
}

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

.trust-elements {
  color: #E8F4F8;
  font-size: 14px;
  margin-top: 24px;
}

/* CONTACT OPTIONS */
.contact-options {
  padding: 60px 20px;
}

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

.contact-option h3 {
  margin-bottom: 16px;
  color: #1E3A5F;
}

.contact-option p {
  margin-bottom: 8px;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  max-width: 600px;
  margin: 40px auto 0;
  background-color: #f7fafc;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-placeholder ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.form-placeholder li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

/* LOCATION & MAP */
.location {
  padding: 60px 20px;
  background-color: #f7fafc;
}

.map-placeholder {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 600px;
  margin: 32px auto 0;
  border: 2px solid #e2e8f0;
}

/* OPENING HOURS TABLE */
.opening-hours {
  padding: 60px 20px;
}

table {
  width: 100%;
  max-width: 600px;
  margin: 32px auto 0;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

tr {
  border-bottom: 1px solid #e2e8f0;
}

tr:last-child {
  border-bottom: none;
}

td {
  padding: 16px 24px;
  color: #4a5568;
}

td:first-child {
  font-weight: 600;
  color: #1E3A5F;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 2px solid #e2e8f0;
}

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

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

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

/* COOKIE CONTROLS */
.cookie-controls {
  background-color: #f7fafc;
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}

.cookie-controls ul {
  list-style: none;
  padding: 0;
}

.cookie-controls li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-controls li:last-child {
  border-bottom: none;
}

/* SUCCESS/CONFIRMATION PAGES */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48bb78;
  color: #ffffff;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(72, 187, 120, 0.3);
}

.confirmation {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.confirmation h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.confirmation ol {
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
}

.next-steps {
  padding: 60px 20px;
  background-color: #f7fafc;
}

.cta-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.cta-cards .card {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  padding: 32px;
  font-weight: 600;
  color: #1E3A5F;
  background-color: #ffffff;
}

.cta-cards .card:hover {
  background-color: #E8F4F8;
}

.trust-element {
  background-color: #ffffff;
  padding: 40px 20px;
}

.testimonial-snippet {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* FEATURED TESTIMONIALS */
.featured-testimonials {
  padding: 60px 20px;
}

.trust-indicators {
  background-color: #f7fafc;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.stats-bar {
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.stats-bar .stat {
  flex: 1 1 220px;
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  color: #1E3A5F;
}

/* FOOTER */
footer {
  background-color: #1E3A5F;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 0;
}

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

.footer-section {
  flex: 1 1 220px;
  min-width: 0;
}

.footer-section img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: #C7A55E;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
  color: #E8F4F8;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-section nav a {
  color: #E8F4F8;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-section nav a:hover {
  color: #C7A55E;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 244, 248, 0.2);
}

.footer-bottom p {
  color: #E8F4F8;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #C7A55E;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 9999;
  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;
  color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-text strong {
  color: #1E3A5F;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

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

.cookie-btn-reject {
  background-color: transparent;
  color: #4a5568;
  border-color: #cbd5e0;
}

.cookie-btn-reject:hover {
  background-color: #f7fafc;
  border-color: #4a5568;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #1E3A5F;
  border-color: #1E3A5F;
}

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

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-modal-header h3 {
  color: #1E3A5F;
  margin: 0;
}

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

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

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

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

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category h4 {
  color: #1E3A5F;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.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: #cbd5e0;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-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-slider {
  background-color: #1E3A5F;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile adjustments */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero {
    padding: 48px 20px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .three-columns .column,
  .four-steps .step,
  .two-columns .column {
    flex: 1 1 100%;
  }
  
  .service-card,
  .card {
    flex: 1 1 100%;
  }
  
  .phase {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
  
  table {
    font-size: 14px;
  }
  
  td {
    padding: 12px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .card {
    flex: 1 1 calc(50% - 20px);
  }
  
  .phase {
    flex: 1 1 calc(50% - 20px);
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none !important;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}