/* ============================================
   BlissSpire Immobilien - Elegant Classic Design
   CSS Style Sheet - FLEXBOX ONLY LAYOUTS
   ============================================ */

/* ============================================
   CSS Reset & 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;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 24px;
  letter-spacing: 0.2px;
}

h4 {
  font-size: 20px;
}

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

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

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
}

/* ============================================
   Layout Container
   ============================================ */

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

/* ============================================
   Header & Navigation
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e4dd;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  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 {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

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

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

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

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

/* ============================================
   Mobile Menu
   ============================================ */

.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #1a4d7a;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 40px 40px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  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: #2c2c2c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #2c2c2c;
  font-size: 18px;
  font-weight: 400;
  padding: 16px 0;
  border-bottom: 1px solid #e8e4dd;
  transition: all 0.3s ease;
}

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

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #15405f;
  border-color: #15405f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1a4d7a;
  border: 1px solid #1a4d7a;
}

.btn-secondary:hover {
  background-color: #1a4d7a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.2);
}

.btn-link {
  color: #1a4d7a;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  padding-right: 20px;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: right 0.3s ease;
}

.btn-link:hover {
  color: #15405f;
}

.btn-link:hover::after {
  right: -5px;
}

/* ============================================
   Hero Sections
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a4d7a 0%, #2a5d8a 100%);
  color: #ffffff;
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h60v60H0z" fill="none"/%3E%3Cpath d="M0 0h30v30H0zm30 30h30v30H30z" fill="%23ffffff" fill-opacity="0.02"/%3E%3C/svg%3E');
  opacity: 0.5;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

.hero-small {
  background: linear-gradient(135deg, #1a4d7a 0%, #2a5d8a 100%);
  color: #ffffff;
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-small h1 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-small p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-small {
    padding: 60px 20px 40px;
  }
  
  .hero-small h1 {
    font-size: 32px;
  }
  
  .hero-small p {
    font-size: 16px;
  }
}

/* ============================================
   Sections
   ============================================ */

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

.section-intro {
  max-width: 800px;
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  margin: 0 auto 48px;
}

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

.content-section h2 {
  margin-bottom: 24px;
}

.content-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================
   Trust Bar (Stats)
   ============================================ */

.trust-bar {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 80px;
  border-top: 1px solid #e8e4dd;
  border-bottom: 1px solid #e8e4dd;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 150px;
}

.trust-number {
  font-size: 48px;
  font-weight: 400;
  color: #1a4d7a;
  line-height: 1;
}

.trust-label {
  font-size: 14px;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .trust-grid {
    gap: 32px;
  }
  
  .trust-item {
    flex-basis: calc(50% - 16px);
  }
}

/* ============================================
   Services Overview
   ============================================ */

.services-overview {
  margin-bottom: 80px;
  padding: 40px 20px;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e8e4dd;
  padding: 32px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: #1a4d7a;
  transition: height 0.3s ease;
}

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

.service-card:hover::before {
  height: 100%;
}

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

.service-card p {
  color: #4a4a4a;
  line-height: 1.7;
  flex-grow: 1;
}

.service-price {
  font-size: 20px;
  color: #1a4d7a;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Value Proposition / Benefits
   ============================================ */

.value-proposition {
  background-color: #f5f3ef;
  padding: 80px 20px;
  margin-bottom: 80px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.benefit-card {
  background-color: #ffffff;
  padding: 40px 32px;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid #e8e4dd;
  transition: all 0.3s ease;
}

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

.benefit-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

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

.benefit-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-grid {
    flex-direction: column;
  }
  
  .benefit-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Process Steps
   ============================================ */

.process {
  margin-bottom: 80px;
  padding: 60px 20px;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #1a4d7a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

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

.step p {
  color: #4a4a4a;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  background-color: #f5f3ef;
  padding: 80px 20px;
  margin-bottom: 80px;
}

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

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

.testimonial-card {
  background-color: #ffffff;
  padding: 40px;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 3px solid #1a4d7a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.testimonial-rating {
  color: #d4af37;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: #2c2c2c;
  flex-grow: 1;
}

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

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

.testimonial-author span {
  color: #6a6a6a;
  font-size: 14px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #1a4d7a 0%, #2a5d8a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* ============================================
   Values Section
   ============================================ */

.values {
  margin-bottom: 80px;
  padding: 60px 20px;
}

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

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

.value-card {
  background-color: #ffffff;
  border: 1px solid #e8e4dd;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

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

.value-card h3 {
  color: #1a4d7a;
  font-size: 24px;
  margin-bottom: 12px;
}

.value-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .values-grid {
    flex-direction: column;
  }
  
  .value-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Team Section
   ============================================ */

.team {
  background-color: #f5f3ef;
  padding: 80px 20px;
  margin-bottom: 80px;
}

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

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

.team-card {
  background-color: #ffffff;
  padding: 40px 32px;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e8e4dd;
  transition: all 0.3s ease;
}

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

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

.team-position {
  color: #1a4d7a;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-expertise,
.team-specialization {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
  }
  
  .team-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Stats Section
   ============================================ */

.stats {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.stats h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.stat-card {
  background-color: #ffffff;
  border: 1px solid #e8e4dd;
  padding: 40px 32px;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 48px;
  color: #1a4d7a;
  font-weight: 400;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-card p {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .stats-grid {
    gap: 24px;
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ============================================
   Services Detailed
   ============================================ */

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

.services-detailed h2 {
  text-align: center;
  margin-bottom: 56px;
}

.service-detail-card {
  background-color: #ffffff;
  border: 1px solid #e8e4dd;
  padding: 40px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-detail-card h3 {
  color: #1a4d7a;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail-card > p {
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
}

.service-detail-card ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail-card ul li {
  color: #4a4a4a;
  line-height: 1.7;
}

.service-duration {
  color: #6a6a6a;
  font-size: 15px;
  font-style: italic;
  margin-top: 8px;
}

/* ============================================
   Properties / Immobilien
   ============================================ */

.properties-featured {
  margin-bottom: 80px;
  padding: 40px 20px;
}

.properties-featured h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.property-card {
  background-color: #ffffff;
  border: 1px solid #e8e4dd;
  padding: 32px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

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

.property-location {
  color: #6a6a6a;
  font-size: 14px;
  margin-bottom: 12px;
}

.property-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.property-price {
  font-size: 24px;
  color: #1a4d7a;
  font-weight: 600;
}

.property-type {
  background-color: #f5f3ef;
  color: #1a4d7a;
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.property-features li {
  background-color: #f5f3ef;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 13px;
  color: #2c2c2c;
}

.property-description {
  color: #4a4a4a;
  line-height: 1.7;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .properties-grid {
    flex-direction: column;
  }
  
  .property-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Property Types
   ============================================ */

.property-types {
  background-color: #f5f3ef;
  padding: 80px 20px;
  margin-bottom: 80px;
}

.property-types h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.type-card {
  background-color: #ffffff;
  padding: 40px 32px;
  text-align: center;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e8e4dd;
  transition: all 0.3s ease;
}

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

.type-card h3 {
  color: #1a4d7a;
  font-size: 24px;
  margin-bottom: 12px;
}

.type-card p {
  color: #4a4a4a;
  line-height: 1.7;
  flex-grow: 1;
}

.type-count {
  font-size: 18px;
  color: #1a4d7a;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .types-grid {
    flex-direction: column;
  }
  
  .type-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Selling CTA
   ============================================ */

.selling-cta {
  background-color: #ffffff;
  border: 2px solid #1a4d7a;
  padding: 60px 40px;
  margin-bottom: 80px;
  text-align: center;
}

.selling-cta h2 {
  color: #1a4d7a;
  margin-bottom: 20px;
}

.selling-cta > p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list {
  list-style: none;
  max-width: 600px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  color: #2c2c2c;
  font-size: 16px;
  position: relative;
  padding-left: 28px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1a4d7a;
  font-weight: bold;
  font-size: 18px;
}

/* ============================================
   Stats Overview
   ============================================ */

.stats-overview {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.stats-overview h2 {
  text-align: center;
  margin-bottom: 56px;
}

/* ============================================
   Case Studies
   ============================================ */

.case-studies {
  margin-bottom: 80px;
  padding: 40px 20px;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 56px;
}

.case-study-card {
  background-color: #ffffff;
  border-left: 4px solid #1a4d7a;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-study-card h3 {
  color: #1a4d7a;
  font-size: 26px;
  margin-bottom: 16px;
}

.case-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.case-details span {
  background-color: #f5f3ef;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 13px;
  color: #2c2c2c;
  font-weight: 600;
}

.case-study-card p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ============================================
   Testimonials Detailed
   ============================================ */

.testimonials-detailed {
  background-color: #f5f3ef;
  padding: 80px 20px;
  margin-bottom: 80px;
}

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

/* ============================================
   Contact Page
   ============================================ */

.contact-options {
  margin-bottom: 80px;
  padding: 40px 20px;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.contact-card {
  background-color: #ffffff;
  border: 1px solid #e8e4dd;
  padding: 40px 32px;
  text-align: center;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

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

.contact-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.contact-card h3 {
  color: #1a4d7a;
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-card p {
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 600;
}

.contact-description {
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form-section {
  background-color: #f5f3ef;
  padding: 80px 20px;
  margin-bottom: 80px;
}

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

.contact-form-section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #4a4a4a;
}

.form-container {
  background-color: #ffffff;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #e8e4dd;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
}

.form-options {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.6;
}

.input-placeholder,
.textarea-placeholder {
  border: 1px solid #e8e4dd;
  background-color: #faf8f5;
  padding: 12px 16px;
  min-height: 45px;
  border-radius: 2px;
}

.textarea-placeholder {
  min-height: 120px;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.form-note {
  color: #6a6a6a;
  font-size: 13px;
  line-height: 1.6;
}

.form-note a {
  color: #1a4d7a;
  text-decoration: underline;
}

.form-note a:hover {
  color: #15405f;
}

@media (max-width: 768px) {
  .form-container {
    padding: 32px 24px;
  }
}

/* ============================================
   Office Info
   ============================================ */

.office-info {
  margin-bottom: 80px;
  padding: 40px 20px;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 56px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.office-address,
.office-hours,
.office-directions {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.office-address h3,
.office-hours h3,
.office-directions h3 {
  color: #1a4d7a;
  font-size: 20px;
  margin-bottom: 12px;
}

.office-address p,
.office-hours p,
.office-directions p {
  color: #4a4a4a;
  line-height: 1.7;
}

.office-note {
  color: #6a6a6a;
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .office-details {
    flex-direction: column;
  }
  
  .office-address,
  .office-hours,
  .office-directions {
    flex: 1 1 100%;
  }
}

/* ============================================
   Team Contact
   ============================================ */

.team-contact {
  background-color: #f5f3ef;
  padding: 80px 20px;
  margin-bottom: 80px;
}

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

/* ============================================
   Legal Content
   ============================================ */

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border: 1px solid #e8e4dd;
}

.content-wrapper h2 {
  color: #1a4d7a;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  color: #1a1a1a;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper p {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}

.content-wrapper ul li {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 8px;
}

.content-wrapper ol {
  list-style: decimal;
  padding-left: 28px;
  margin-bottom: 20px;
}

.content-wrapper ol li {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 8px;
}

.intro-text {
  font-size: 18px;
  color: #2c2c2c;
  line-height: 1.8;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 32px 24px;
  }
}

/* ============================================
   Thank You Page
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #1a4d7a 0%, #2a5d8a 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 80px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 24px;
}

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

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 16px;
}

.confirmation-message {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

@media (max-width: 768px) {
  .thank-you-hero {
    padding: 60px 20px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  
  .thank-you-hero h1 {
    font-size: 28px;
  }
}

.next-steps {
  margin-bottom: 80px;
  padding: 40px 20px;
}

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

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

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
  }
}

.response-time {
  background-color: #f5f3ef;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 80px;
}

.response-time h2 {
  margin-bottom: 20px;
}

.response-time p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
}

.what-to-expect {
  margin-bottom: 80px;
  padding: 40px 20px;
}

.what-to-expect h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

/* ============================================
   Footer
   ============================================ */

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4af37;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #1a4d7a;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-consent-text p {
  margin-bottom: 8px;
}

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

.cookie-consent-text a:hover {
  color: #15405f;
}

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

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

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

.cookie-btn-accept:hover {
  background-color: #15405f;
  border-color: #15405f;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #2c2c2c;
  border: 1px solid #e8e4dd;
}

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

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

.cookie-btn-settings:hover {
  background-color: #1a4d7a;
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-text {
    flex: 1 1 100%;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   Cookie Settings 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: 1001;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 2px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2c2c2c;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  color: #1a4d7a;
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-modal p {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cookie-category {
  border: 1px solid #e8e4dd;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

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

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

.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: #1a4d7a;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #1a4d7a;
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons .cookie-btn {
  flex: 1 1 auto;
}

@media (max-width: 768px) {
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

/* ============================================
   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);
  }
}

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

/* ============================================
   Print Styles
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
  
  body {
    background-color: #ffffff;
  }
  
  .container {
    max-width: 100%;
  }
}