/* 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

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

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

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #A02F13;
  text-decoration: underline;
}

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

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

/* Header */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #E8D5C4;
  color: #C73E1D;
  text-decoration: none;
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

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

.mobile-menu-toggle:hover {
  background-color: #A02F13;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  transition: right 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: #E8D5C4;
  border-left-color: #C73E1D;
  text-decoration: none;
}

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

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

.btn-primary:hover {
  background-color: #A02F13;
  border-color: #A02F13;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 62, 29, 0.3);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(199, 62, 29, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators span {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

/* Hero 404 */
.hero-404 {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #C73E1D;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.error-content h1 {
  color: #FFFFFF;
}

.error-content p {
  color: #FFFFFF;
  opacity: 0.9;
}

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

/* Value Proposition */
.value-proposition {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
}

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

.feature h3 {
  color: #C73E1D;
  margin-bottom: 12px;
}

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

.services-overview h2,
.services-overview > p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.services-overview > p {
  margin-bottom: 48px;
  font-size: 18px;
  color: #5A6C7D;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #C73E1D;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

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

.service-card .price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #C73E1D;
  margin-top: auto;
}

.services-overview > .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* Process Section */
.process {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #C73E1D;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(199, 62, 29, 0.3);
}

.process-step h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.process-step p {
  color: #5A6C7D;
  margin-bottom: 0;
}

.process > .container > .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 280px;
}

/* Testimonials */
.testimonials {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  border-left: 4px solid #C73E1D;
  transition: all 0.3s ease;
  gap: 20px;
}

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

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

.testimonial-card .author {
  display: block;
  font-weight: 600;
  color: #C73E1D;
  font-style: normal;
  font-size: 14px;
  margin-top: auto;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #C73E1D 0%, #A02F13 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 8px;
}

.cta-banner .container {
  max-width: 800px;
}

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

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

.value-props {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.value-props span {
  font-size: 14px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
}

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

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

/* Company Story */
.company-story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.company-story > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #5A6C7D;
}

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

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 260px;
  padding: 24px;
}

.year {
  display: block;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  color: #C73E1D;
  margin-bottom: 12px;
}

.milestone p {
  color: #2C3E50;
  margin-bottom: 0;
}

/* Mission & Values */
.mission-values {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.mission-values > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #5A6C7D;
}

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

.value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  transition: all 0.3s ease;
}

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

.value h3 {
  color: #C73E1D;
  margin-bottom: 12px;
}

.value p {
  color: #5A6C7D;
  margin-bottom: 0;
}

/* Stats Section */
.stats {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #F8F9FA;
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  border-top: 4px solid #C73E1D;
  transition: all 0.3s ease;
}

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

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  color: #C73E1D;
  margin-bottom: 12px;
  line-height: 1;
}

.stat p {
  color: #2C3E50;
  margin-bottom: 0;
  font-weight: 500;
}

/* Approach Section */
.approach {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.approach-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.approach-item h3 {
  color: #C73E1D;
  margin-bottom: 12px;
}

.approach-item p {
  color: #5A6C7D;
  margin-bottom: 0;
}

/* Services Detail */
.services-detail {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.service-block {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #C73E1D;
}

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

.service-block h3 {
  color: #C73E1D;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-block .price {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #C73E1D;
  margin: 16px 0 24px;
  padding: 12px 24px;
  background-color: #E8D5C4;
  border-radius: 6px;
}

.service-block ul {
  margin-left: 0;
  list-style: none;
  margin-bottom: 32px;
}

.service-block ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #2C3E50;
}

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

/* Property Filters */
.property-filters {
  background-color: #F8F9FA;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.filter-toggle {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-toggle button {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  background-color: #FFFFFF;
  color: #2C3E50;
  border: 2px solid #E0E6ED;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-toggle button:hover,
.filter-toggle button.active {
  background-color: #C73E1D;
  color: #FFFFFF;
  border-color: #C73E1D;
}

.filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.filters select {
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #E0E6ED;
  border-radius: 6px;
  background-color: #FFFFFF;
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.filters select:hover,
.filters select:focus {
  border-color: #C73E1D;
  outline: none;
}

/* Property Listings */
.property-listings {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.property-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.property-card h3 {
  padding: 24px 24px 12px;
  color: #2C3E50;
  margin-bottom: 8px;
}

.property-card .location {
  padding: 0 24px;
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 12px;
}

.property-card .price {
  padding: 0 24px;
  font-size: 24px;
  font-weight: 700;
  color: #C73E1D;
  margin-bottom: 16px;
}

.property-card .specs {
  display: flex;
  gap: 16px;
  padding: 16px 24px 24px;
  margin: 0;
  list-style: none;
  border-top: 1px solid #E0E6ED;
  flex-wrap: wrap;
}

.property-card .specs li {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 0;
}

/* Selling CTA */
.selling-cta {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.selling-cta h2 {
  margin-bottom: 16px;
}

.selling-cta > .container > p {
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 32px;
}

.selling-cta ul {
  display: flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  margin: 0 0 32px 0;
  flex-wrap: wrap;
}

.selling-cta ul li {
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  padding-left: 28px;
  position: relative;
  margin-bottom: 0;
}

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

/* Benefits Section */
.benefits {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.benefit:hover {
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit h3 {
  color: #C73E1D;
  margin-bottom: 12px;
}

.benefit p {
  color: #5A6C7D;
  margin-bottom: 0;
}

/* Valuation Methods */
.valuation-methods {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.valuation-methods > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #5A6C7D;
}

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

.method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.method h3 {
  color: #C73E1D;
  margin-bottom: 12px;
}

.method p {
  color: #5A6C7D;
  margin-bottom: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 8px;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Use Cases */
.use-cases {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.use-case {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.use-case:hover {
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.use-case h3 {
  color: #C73E1D;
  margin-bottom: 12px;
}

.use-case p {
  color: #5A6C7D;
  margin-bottom: 0;
}

.trust-line {
  margin-top: 24px;
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
}

/* Featured Article */
.featured-article {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 8px;
  position: relative;
}

.featured-badge {
  display: inline-block;
  background-color: #C73E1D;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.featured-article h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.featured-article p {
  color: #FFFFFF;
  opacity: 0.95;
  margin-bottom: 24px;
  font-size: 18px;
}

.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.article-meta span {
  font-size: 14px;
}

/* Category Filter */
.category-filter {
  background-color: #F8F9FA;
  padding: 32px 20px;
  margin-bottom: 60px;
}

.categories {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.categories button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  background-color: #FFFFFF;
  color: #2C3E50;
  border: 2px solid #E0E6ED;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.categories button:hover,
.categories button.active {
  background-color: #C73E1D;
  color: #FFFFFF;
  border-color: #C73E1D;
}

/* Article Grid */
.article-grid {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

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

.article-card .meta {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #E0E6ED;
}

.article-card .meta span {
  font-size: 14px;
  color: #5A6C7D;
}

/* Popular Articles */
.popular-articles {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.popular-articles h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.popular-list li {
  background-color: #FFFFFF;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.popular-list a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.popular-list a:hover {
  color: #C73E1D;
}

/* Contact Options */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #F8F9FA;
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.contact-option h3 {
  color: #C73E1D;
  margin-bottom: 12px;
}

.contact-option p {
  color: #5A6C7D;
  margin-bottom: 8px;
}

.contact-detail {
  color: #2C3E50;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.response-time,
.note {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
}

/* Office Location */
.office-location {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.office-location h2 {
  margin-bottom: 16px;
}

.address {
  font-size: 18px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 32px;
}

.location-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.location-info p {
  margin-bottom: 16px;
  color: #5A6C7D;
}

/* Service Areas */
.service-areas {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.service-areas h2 {
  margin-bottom: 32px;
}

.service-areas p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 16px;
  color: #5A6C7D;
}

/* Appointment Booking */
.appointment-booking {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.appointment-booking > .container > p {
  text-align: center;
  color: #5A6C7D;
  margin-bottom: 48px;
}

.appointment-types {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.appointment-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.appointment-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.appointment-type h3 {
  color: #C73E1D;
  margin-bottom: 12px;
}

.appointment-type p {
  color: #5A6C7D;
  margin-bottom: 0;
}

.appointment-booking > .container > .btn-primary {
  display: block;
  margin: 0 auto 24px;
  max-width: 300px;
}

.flexibility {
  text-align: center;
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  color: #2C3E50;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid #E0E6ED;
}

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

.content-wrapper h3 {
  color: #C73E1D;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

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

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: #5A6C7D;
}

.content-wrapper li {
  margin-bottom: 8px;
}

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

/* Help Section (404) */
.help-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.help-section h2 {
  margin-bottom: 16px;
}

.help-section > .container > p {
  color: #5A6C7D;
  margin-bottom: 32px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F9FA;
  padding: 24px 32px;
  border-radius: 8px;
  font-weight: 600;
  color: #2C3E50;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  border: 2px solid transparent;
}

.link-card:hover {
  background-color: #C73E1D;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(199, 62, 29, 0.3);
  text-decoration: none;
}

/* Popular Pages (404) */
.popular-pages {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.page-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  font-weight: 600;
  color: #2C3E50;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-card:hover {
  background-color: #C73E1D;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(199, 62, 29, 0.2);
  text-decoration: none;
}

/* Contact CTA (404) */
.contact-cta {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 16px;
}

.contact-cta p {
  color: #5A6C7D;
  margin-bottom: 32px;
}

.contact-cta a[href^="mailto"] {
  color: #C73E1D;
  font-weight: 600;
  text-decoration: none;
}

.contact-cta a[href^="mailto"]:hover {
  text-decoration: underline;
}

/* Success Icon (Thank You) */
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #27AE60;
  color: #FFFFFF;
  font-size: 60px;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}

/* Confirmation Details */
.confirmation-details {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

/* Confirmation Section */
.confirmation {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.confirmation h2 {
  margin-bottom: 16px;
}

.confirmation p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: #5A6C7D;
}

/* Next Steps */
.next-steps {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.action-card p {
  color: #5A6C7D;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Contact Info */
.contact-info {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info p {
  color: #5A6C7D;
  margin-bottom: 12px;
}

.contact-info a {
  color: #C73E1D;
  font-weight: 600;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Social Proof */
.social-proof {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

/* Explore Section */
.explore {
  background-color: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 450px;
  transition: all 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.explore-card p {
  color: #5A6C7D;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.guarantee {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-top: 16px;
}

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

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

.footer-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  gap: 16px;
}

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

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

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #E8D5C4;
  padding-left: 8px;
  text-decoration: none;
}

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

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

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

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

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

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

.cookie-consent button {
  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-accept {
  background-color: #C73E1D;
  color: #FFFFFF;
  border-color: #C73E1D;
}

.cookie-accept:hover {
  background-color: #A02F13;
  border-color: #A02F13;
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings {
  background-color: transparent;
  color: #E8D5C4;
  border-color: #E8D5C4;
}

.cookie-settings:hover {
  background-color: #E8D5C4;
  color: #2C3E50;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 32px 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 h2 {
  color: #2C3E50;
  margin-bottom: 24px;
}

.cookie-modal p {
  color: #5A6C7D;
  margin-bottom: 24px;
}

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

.cookie-category h3 {
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #5A6C7D;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: all 0.3s ease;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1,
  .hero-404 .error-code {
    font-size: 36px;
  }

  .error-code {
    font-size: 80px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-content {
    justify-content: center;
  }

  .features-grid,
  .service-grid,
  .process-grid,
  .testimonial-grid,
  .values-grid,
  .stats-grid,
  .approach-grid,
  .benefits-grid,
  .methods-grid,
  .use-cases-grid,
  .articles,
  .property-grid,
  .contact-grid,
  .appointment-types,
  .action-grid,
  .explore-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature,
  .service-card,
  .process-step,
  .testimonial-card,
  .value,
  .stat,
  .approach-item,
  .benefit,
  .method,
  .use-case,
  .article-card,
  .property-card,
  .contact-option,
  .appointment-type,
  .action-card,
  .explore-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta a,
  .cta-buttons a {
    width: 100%;
    max-width: 100%;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent p {
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

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

  .service-block {
    padding: 24px;
  }

  .content-wrapper {
    padding: 24px;
  }

  .milestones {
    flex-direction: column;
  }

  .milestone {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .selling-cta ul {
    flex-direction: column;
    align-items: center;
  }

  .quick-links,
  .page-grid {
    flex-direction: column;
  }

  .link-card,
  .page-card {
    width: 100%;
    max-width: 100%;
  }

  .process-steps {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature,
  .service-card,
  .value,
  .approach-item,
  .benefit,
  .method {
    flex: 1 1 calc(50% - 32px);
  }

  .process-step,
  .stat,
  .use-case {
    flex: 1 1 calc(50% - 32px);
  }

  .testimonial-card,
  .article-card,
  .property-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .header-cta,
  .hero-cta,
  .cta-banner,
  .cta-buttons,
  footer {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
  }

  h3 {
    font-size: 14pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* Accessibility Enhancements */
:focus {
  outline: 2px solid #C73E1D;
  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;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}