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

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4 {
  font-family: 'Crimson Text', Georgia, serif;
  font-weight: 600;
  color: #1E3A5F;
  line-height: 1.3;
  margin-bottom: 16px;
}

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: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

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

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #1E3A5F;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #F0F4F8;
  color: #D4AF37;
}

.cta-button {
  display: none;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #1E3A5F;
  background-color: #FFFFFF;
  border: 2px solid #E0E7EF;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 110;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1E3A5F;
  color: #FFFFFF;
  border-color: #1E3A5F;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #1E3A5F;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 120;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 28px;
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 20px;
}

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

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #D4AF37;
  align-items: center;
}

.trust-indicators span {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.hero-inner {
  background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.hero-inner h1 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.hero-inner p {
  color: #E0E7EF;
  font-size: 18px;
}

.breadcrumb {
  font-size: 14px;
  color: #D4AF37;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #D4AF37;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background-color: #D4AF37;
  color: #1E3A5F;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: #C19A2E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1E3A5F;
}

.btn-link {
  background-color: transparent;
  color: #1E3A5F;
  border: 2px solid #1E3A5F;
  min-width: auto;
}

.btn-link:hover {
  background-color: #1E3A5F;
  color: #FFFFFF;
}

.button-placeholder {
  background-color: #D4AF37;
  color: #1E3A5F;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* ===================================
   SERVICES & CARDS
   =================================== */

.services-preview,
.services-detail {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.services-grid,
.team-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.service-card,
.service-detail-card,
.team-member-card,
.value-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E7EF;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 100%;
  margin-bottom: 20px;
}

.service-card:hover,
.service-detail-card:hover,
.team-member-card:hover,
.value-card:hover {
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.12);
  transform: translateY(-4px);
  border-color: #D4AF37;
}

.service-card img,
.service-detail-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.service-card p,
.service-detail-card p {
  color: #5A6C7D;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-detail-card ul {
  margin: 16px 0;
  padding-left: 20px;
}

.service-detail-card ul li {
  color: #5A6C7D;
  margin-bottom: 8px;
  list-style-type: disc;
}

.price {
  display: inline-block;
  padding: 8px 16px;
  background-color: #F0F4F8;
  color: #1E3A5F;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 12px;
}

/* ===================================
   VALUES & FEATURES
   =================================== */

.values {
  background-color: #F8F9FA;
  padding: 60px 20px;
}

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

.value-item,
.feature-item {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  border-left: 4px solid #D4AF37;
  flex: 1 1 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.value-item h3,
.feature-item h3 {
  color: #1E3A5F;
  font-size: 20px;
}

.value-item p,
.feature-item p {
  color: #5A6C7D;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  background-color: #F0F4F8;
  padding: 60px 20px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.testimonial-author span {
  color: #5A6C7D;
  font-size: 14px;
}

/* ===================================
   TEAM
   =================================== */

.team-intro {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.team-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
}

.team-stats span {
  padding: 12px 24px;
  background-color: #F0F4F8;
  color: #1E3A5F;
  font-weight: 600;
  border-radius: 8px;
}

.position {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.specialization {
  color: #5A6C7D;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 12px;
}

/* ===================================
   ABOUT & TEXT SECTIONS
   =================================== */

.about-story,
.office-info,
.text-section {
  padding: 40px 20px;
  margin-bottom: 40px;
}

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

.text-section p {
  margin-bottom: 20px;
}

/* ===================================
   STATS & ACHIEVEMENTS
   =================================== */

.achievements {
  background-color: #1E3A5F;
  color: #FFFFFF;
  padding: 60px 20px;
}

.achievements h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.stat-item {
  flex: 1 1 100%;
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Crimson Text', Georgia, serif;
}

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

.text-center {
  text-align: center;
  color: #E0E7EF;
}

/* ===================================
   CONTACT & FORMS
   =================================== */

.contact-options {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-option {
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid #E0E7EF;
  flex: 1 1 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option:hover {
  border-color: #D4AF37;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

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

.contact-option p {
  color: #5A6C7D;
}

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

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

.form-placeholder p {
  padding: 12px 16px;
  background-color: #F0F4F8;
  border: 1px solid #E0E7EF;
  border-radius: 6px;
  margin-bottom: 16px;
  color: #5A6C7D;
}

.checkbox-text {
  font-size: 14px;
  color: #5A6C7D;
}

.contact-info {
  text-align: center;
  margin: 24px 0;
}

.contact-info p {
  font-size: 18px;
  color: #1E3A5F;
  margin-bottom: 8px;
}

/* ===================================
   LOGIN & MANDANTEN
   =================================== */

.login-section {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.login-box {
  max-width: 500px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.login-form-placeholder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-note {
  font-size: 14px;
  color: #5A6C7D;
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background-color: #F0F4F8;
  border-radius: 6px;
}

.features-overview {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.security-info,
.registration-info {
  padding: 40px 20px;
  background-color: #F8F9FA;
}

.security-info ul,
.team-culture ul {
  max-width: 700px;
  margin: 20px auto;
  padding-left: 24px;
}

.security-info ul li,
.team-culture ul li {
  color: #5A6C7D;
  margin-bottom: 12px;
  list-style-type: disc;
  line-height: 1.8;
}

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
}

.legal-content h2 {
  color: #1E3A5F;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content ul {
  padding-left: 24px;
  margin: 20px 0;
}

.legal-content ul li {
  color: #5A6C7D;
  margin-bottom: 12px;
  list-style-type: disc;
  line-height: 1.8;
}

.update-date {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
}

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

.thank-you {
  text-align: center;
  padding: 80px 20px;
}

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

.confirmation,
.next-steps,
.resources,
.contact-reminder {
  padding: 40px 20px;
  margin-bottom: 32px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 32px auto;
}

.step-item {
  padding: 20px 24px;
  background-color: #F0F4F8;
  border-left: 4px solid #D4AF37;
  border-radius: 8px;
  color: #2C3E50;
}

.urgent-note {
  text-align: center;
  color: #DC3545;
  font-weight: 600;
  margin-top: 32px;
  padding: 16px;
  background-color: #FFE5E5;
  border-radius: 8px;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.resource-link {
  padding: 16px 24px;
  background-color: #F0F4F8;
  color: #1E3A5F;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background-color: #1E3A5F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section {
  background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0;
}

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

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

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.pricing-info,
.consultation-booking,
.office-location,
.office-hours,
.team-contacts {
  padding: 40px 20px;
  background-color: #FFFFFF;
  margin-bottom: 32px;
}

.office-hours ul {
  max-width: 500px;
  margin: 20px auto;
  padding-left: 0;
}

.office-hours ul li {
  padding: 12px 20px;
  background-color: #F0F4F8;
  border-radius: 6px;
  margin-bottom: 8px;
  color: #2C3E50;
  list-style: none;
}

.team-contacts ul {
  max-width: 700px;
  margin: 20px auto;
  padding-left: 0;
}

.team-contacts ul li {
  padding: 12px 20px;
  border-bottom: 1px solid #E0E7EF;
  color: #2C3E50;
  list-style: none;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background-color: #1E3A5F;
  color: #E0E7EF;
  padding: 60px 20px 20px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E3A5F;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 150;
  display: none;
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cookie-text {
  color: #E0E7EF;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

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

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

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

.cookie-reject:hover {
  background-color: #FFFFFF;
  color: #1E3A5F;
}

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

.cookie-settings:hover {
  background-color: #D4AF37;
  color: #1E3A5F;
}

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

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

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

.cookie-modal-content h3 {
  color: #1E3A5F;
  margin-bottom: 24px;
}

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

.cookie-category h4 {
  color: #1E3A5F;
  margin-bottom: 8px;
}

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

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

.cookie-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

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

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .trust-indicators {
    flex-direction: row;
    justify-content: center;
  }

  .service-card,
  .service-detail-card,
  .team-member-card,
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }

  .value-item,
  .feature-item {
    flex: 1 1 calc(50% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }

  .stat-item {
    flex: 1 1 calc(25% - 24px);
  }

  .contact-option {
    flex: 1 1 calc(50% - 24px);
  }

  .team-stats {
    flex-direction: row;
    justify-content: center;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step-item {
    flex: 1 1 calc(33.333% - 20px);
  }

  .cookie-buttons {
    flex-direction: row;
    width: auto;
  }

  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: auto;
    min-width: 150px;
  }

  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-text {
    text-align: left;
    flex: 1;
  }

  .cta-buttons {
    flex-direction: row;
  }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #D4AF37;
    color: #1E3A5F;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

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

  .service-card,
  .value-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .service-detail-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .team-member-card {
    flex: 1 1 calc(50% - 24px);
  }

  .value-item,
  .feature-item {
    flex: 1 1 calc(50% - 24px);
  }

  .contact-option {
    flex: 1 1 calc(25% - 24px);
  }

  .footer-column {
    flex: 1 1 calc(25% - 40px);
  }

  section {
    padding: 60px 40px;
  }

  .hero {
    padding: 120px 40px;
  }

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

  .cookie-modal-buttons {
    flex-direction: row;
  }
}

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

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

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

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

.gap-20 {
  gap: 20px;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

*:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

.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;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-section {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}