/* CSS Reset and 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', Arial, sans-serif;
  line-height: 1.7;
  color: #17252A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Monochrome Sophisticated Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #2A2A2A;
  font-size: 16px;
}

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

ul {
  list-style: none;
}

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

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

/* Header Styles - Monochrome Sophisticated */
header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #000000;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000000;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom: 2px solid #000000;
  opacity: 0.7;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 0;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  border-left: 2px solid #000000;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  padding: 16px 0;
  border-bottom: 1px solid #E0E0E0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 12px;
  opacity: 0.7;
}

/* Hero Section - Dramatic Monochrome */
.hero {
  background: linear-gradient(135deg, #000000 0%, #2A2A2A 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: #E0E0E0;
  margin-bottom: 32px;
  font-weight: 300;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.trust-badges span {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.service-badge {
  font-size: 14px;
  color: #CCCCCC;
  font-weight: 600;
}

/* Button Styles - Monochrome Sophisticated */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.btn-primary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #000000;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  opacity: 0.7;
  padding-left: 8px;
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 48px;
  font-weight: 300;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 40px;
}

/* Services Grid - Flexbox Only */
.services-overview {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

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

.service-card {
  background-color: #FFFFFF;
  padding: 32px;
  border: 2px solid #000000;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 #000000;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
}

.service-card p {
  color: #4A4A4A;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 16px;
}

/* Benefits Section */
.benefits {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.benefit {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.benefit:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0);
}

.benefit h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit p {
  font-size: 14px;
  color: #5A5A5A;
}

/* Testimonials Section - High Contrast */
.testimonials {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
}

.testimonials h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  color: #000000;
  padding: 32px;
  border: 2px solid #FFFFFF;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 550px;
  margin-bottom: 20px;
}

.testimonial-card .rating {
  color: #000000;
  font-size: 20px;
  margin-bottom: 16px;
}

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

.testimonial-card .author {
  color: #5A5A5A;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}

.overall-rating {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

/* Coverage Area */
.coverage-area {
  background-color: #F5F5F5;
  text-align: center;
  padding: 60px 20px;
}

.coverage-area p {
  font-size: 18px;
  margin-bottom: 16px;
}

.districts {
  font-weight: 600;
  color: #000000;
  margin: 32px 0;
  font-size: 16px;
}

/* CTA Banner - Dramatic Contrast */
.cta-banner {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 24px;
}

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

.urgency-note {
  font-size: 14px;
  color: #CCCCCC;
  margin-top: 24px;
  font-weight: 600;
}

/* Page Hero - Internal Pages */
.page-hero {
  background-color: #F5F5F5;
  border-bottom: 2px solid #000000;
  padding: 48px 20px;
  margin-bottom: 60px;
}

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

.breadcrumb a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #FFFFFF;
}

.trust-badge {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 24px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Detailed */
.services-detailed {
  padding: 40px 20px;
}

.service-detail {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  padding: 40px;
  margin-bottom: 40px;
}

.service-detail h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 24px;
}

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

.service-detail ul li {
  list-style: square;
  margin-bottom: 12px;
  color: #4A4A4A;
}

.service-detail strong {
  color: #000000;
  font-weight: 700;
}

/* Custom Solutions */
.custom-solutions {
  background-color: #F5F5F5;
  text-align: center;
  padding: 60px 20px;
}

/* Service Commitment */
.service-commitment {
  padding: 60px 20px;
}

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

.commitment {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  border: 1px solid #E0E0E0;
}

.commitment img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0);
}

.commitment h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.commitment p {
  font-size: 14px;
  color: #5A5A5A;
}

/* CTA Section */
.cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

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

.cta-section p {
  color: #999999;
  margin-bottom: 32px;
}

.office-hours {
  font-size: 14px;
  color: #CCCCCC;
  margin-top: 24px;
}

/* Pricing Table */
.pricing-table {
  padding: 60px 20px;
}

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

.pricing-card {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 #000000;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  text-align: center;
}

.price-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
}

.pricing-card ul {
  margin-left: 0;
}

.pricing-card ul li {
  list-style: none;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  color: #4A4A4A;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.disclaimer {
  text-align: center;
  font-size: 14px;
  color: #5A5A5A;
  font-style: italic;
  margin-top: 40px;
}

/* Pricing Factors */
.pricing-factors {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

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

.factor {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border: 2px solid #000000;
}

.factor h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.factor p {
  font-size: 14px;
  color: #5A5A5A;
}

/* Discount Offers */
.discount-offers {
  padding: 60px 20px;
}

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

.offer {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  padding: 24px;
  border: 2px solid #000000;
  background-color: #FFFFFF;
}

.offer h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
}

.offer p {
  font-size: 14px;
  color: #4A4A4A;
  text-align: center;
}

/* Transparency Promise */
.transparency-promise {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

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

.promise {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
}

.promise h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.promise p {
  font-size: 14px;
  color: #5A5A5A;
}

.badge {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.value {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  padding: 24px;
  border: 2px solid #000000;
  background-color: #FFFFFF;
}

.value h4 {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
}

.value p {
  font-size: 14px;
  color: #4A4A4A;
  text-align: center;
}

/* Team Intro */
.team-intro {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

.team-qualities {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.team-qualities span {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
}

/* Why Choose Us */
.why-choose-us {
  padding: 60px 20px;
}

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

.reason {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  padding: 24px;
  border: 2px solid #000000;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.reason:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 #000000;
}

.reason h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
}

.reason p {
  font-size: 14px;
  color: #4A4A4A;
  text-align: center;
}

/* Service Area */
.service-area {
  background-color: #F5F5F5;
  padding: 60px 20px;
  text-align: center;
}

/* Statistics */
.statistics {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
}

.statistics h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 32px;
  border: 2px solid #FFFFFF;
}

.stat h3 {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.stat p {
  font-size: 16px;
  color: #E0E0E0;
}

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

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

.contact-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  padding: 32px;
  border: 2px solid #000000;
  background-color: #FFFFFF;
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0);
}

.contact-option h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-option p {
  font-size: 16px;
  color: #4A4A4A;
}

.contact-option strong {
  color: #000000;
  font-weight: 700;
}

.preferred-method {
  text-align: center;
  font-size: 14px;
  color: #5A5A5A;
  font-style: italic;
}

/* Contact Form */
.contact-form-section {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 700px;
  margin: 48px auto 0;
  background-color: #FFFFFF;
  padding: 40px;
  border: 2px solid #000000;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #E0E0E0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #2A2A2A;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #000000;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-field.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-field.checkbox a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.form-wrapper .btn {
  width: 100%;
  margin-top: 16px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #5A5A5A;
  margin-top: 16px;
}

/* Office Hours */
.office-hours {
  background-color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.office-hours ul {
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.office-hours ul li {
  padding: 16px;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.office-hours ul li:last-child {
  border-bottom: none;
}

/* Location Map */
.location-map {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

.address {
  text-align: center;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.visit-note {
  text-align: center;
  font-size: 14px;
  color: #5A5A5A;
  font-style: italic;
  margin-top: 32px;
}

/* Service Area Contact */
.service-area-contact {
  padding: 60px 20px;
  text-align: center;
}

/* Trust Signals */
.trust-signals {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
}

.trust-signals h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.signal {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  padding: 24px;
  border: 2px solid #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
}

.signal p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* Legal Pages */
.legal-page {
  padding: 40px 20px 60px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border: 2px solid #000000;
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  text-align: left;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.legal-content ul {
  margin: 16px 0 16px 32px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4A4A4A;
}

.legal-content a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.legal-content a:hover {
  opacity: 0.7;
}

.last-updated {
  font-size: 14px;
  color: #5A5A5A;
  font-style: italic;
  margin-bottom: 32px;
}

.subtitle {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 24px;
}

.contact-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #E0E0E0;
  text-align: center;
}

/* Thank You Page */
.thank-you-page {
  padding: 80px 20px;
  text-align: center;
  background-color: #F5F5F5;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin: 0 auto 32px;
  font-weight: 300;
}

.confirmation-note {
  font-size: 14px;
  color: #5A5A5A;
  margin-top: 24px;
}

/* Next Steps */
.next-steps {
  padding: 60px 20px;
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  border: 2px solid #000000;
  background-color: #FFFFFF;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: #5A5A5A;
}

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

/* Social Proof */
.social-proof {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.social-proof h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.trust-headline {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 40px;
}

.testimonial-preview {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid #FFFFFF;
}

.testimonial-preview .rating {
  color: #FFFFFF;
  font-size: 24px;
  margin-bottom: 16px;
}

.testimonial-preview p {
  color: #FFFFFF;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-preview .author {
  color: #CCCCCC;
  font-weight: 600;
  font-style: normal;
}

.guarantee {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
}

/* Useful Links */
.useful-links {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 48px 0 40px;
}

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  padding: 32px;
  border: 2px solid #000000;
  background-color: #FFFFFF;
  text-align: center;
}

.link-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.link-card p {
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 20px;
}

/* Email Help */
.email-help {
  padding: 60px 20px;
  text-align: center;
}

.response-promise {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 16px;
}

.response-time {
  font-size: 14px;
  color: #5A5A5A;
  margin-top: 24px;
}

.trust-note {
  font-size: 14px;
  color: #5A5A5A;
  margin-top: 24px;
}

/* Footer - Monochrome Sophisticated */
footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 0;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

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

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

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #FFFFFF;
  padding: 24px;
  z-index: 9999;
  border-top: 2px solid #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-banner.show {
  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;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 500px;
}

.cookie-text p {
  color: #E0E0E0;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-text a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 600;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #FFFFFF;
}

.cookie-buttons button:hover {
  background-color: #FFFFFF;
  color: #000000;
}

#accept-cookies {
  background-color: #FFFFFF;
  color: #000000;
}

#accept-cookies:hover {
  background-color: #000000;
  color: #FFFFFF;
}

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

.cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

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

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

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

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCCCCC;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #FFFFFF;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: #000000;
}

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

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

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

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

.cookie-modal-buttons button {
  flex: 1;
  min-width: 120px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Section spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Flex containers mobile adjustments */
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .pricing-grid,
  .factors-grid,
  .offers-grid,
  .promise-grid,
  .values-grid,
  .reasons-grid,
  .stats-grid,
  .contact-grid,
  .commitment-grid,
  .steps-grid,
  .links-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Cards full width on mobile */
  .service-card,
  .pricing-card,
  .testimonial-card,
  .benefit,
  .factor,
  .offer,
  .promise,
  .value,
  .reason,
  .stat,
  .contact-option,
  .commitment,
  .step,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Trust badges mobile */
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  /* CTA buttons mobile */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Legal content mobile */
  .legal-content {
    padding: 24px;
  }
  
  /* Form wrapper mobile */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Cookie modal mobile */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .benefit,
  .factor,
  .offer,
  .commitment,
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .reason,
  .contact-option,
  .link-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons {
    display: none;
  }
  
  body {
    color: #000000;
    background-color: #FFFFFF;
  }
}