/* ===== 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;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #FAF8F5;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.4;
  color: #1A1A1A;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #7A1020;
}

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

li {
  margin-bottom: 12px;
  line-height: 1.8;
}

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

.section {
  margin-bottom: 80px;
  padding: 60px 0;
}

/* ===== HEADER ===== */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E0D8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  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;
  gap: 24px;
}

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

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

.main-nav a {
  color: #2C2C2C;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #9B1529;
  border-bottom-color: #9B1529;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #9B1529;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(155, 21, 41, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  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: #9B1529;
  transform: rotate(90deg);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F2ED 100%);
  padding: 80px 0 60px;
  margin-bottom: 0;
}

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

.hero h1 {
  font-size: 56px;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid #E5E0D8;
}

.trust-indicators span {
  font-size: 14px;
  color: #5A5A5A;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #9B1529;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

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

.btn-primary:hover {
  background-color: #7A1020;
  border-color: #7A1020;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(155, 21, 41, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #9B1529;
  border-color: #9B1529;
}

.btn-secondary:hover {
  background-color: #9B1529;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(155, 21, 41, 0.15);
}

.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
  background-color: #FFFFFF;
  padding: 80px 0;
}

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

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

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

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

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

.value-card h3 {
  color: #9B1529;
  margin-bottom: 16px;
  font-size: 22px;
}

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

/* ===== SERVICES ===== */
.services-overview {
  background-color: #FAF8F5;
  padding: 80px 0;
}

.services-overview h2 {
  text-align: center;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 1px solid #E5E0D8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
  font-size: 20px;
}

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

.service-card .price {
  color: #9B1529;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-top: auto;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed {
  padding: 60px 0;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 48px;
  margin-bottom: 40px;
  border: 1px solid #E5E0D8;
  border-left: 4px solid #9B1529;
}

.service-detail h2 {
  color: #1A1A1A;
  margin-bottom: 20px;
}

.service-detail p {
  color: #5A5A5A;
  margin-bottom: 24px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.features-list li {
  flex: 1 1 calc(50% - 6px);
  min-width: 200px;
  padding: 12px 16px;
  background-color: #FAF8F5;
  border-left: 3px solid #E8B923;
  font-size: 15px;
  margin-bottom: 0;
}

.service-detail .price {
  display: block;
  color: #9B1529;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ===== STATS ===== */
.social-proof {
  background-color: #FFFFFF;
  padding: 80px 0;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 80px;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 40px 24px;
  background-color: #FAF8F5;
  border: 1px solid #E5E0D8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: #9B1529;
  display: block;
  font-family: 'Georgia', serif;
}

.stat-label {
  font-size: 15px;
  color: #5A5A5A;
  display: block;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  margin-bottom: 56px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 40px;
  border: 1px solid #E5E0D8;
  border-left: 4px solid #E8B923;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #9B1529 0%, #7A1020 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #9B1529;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background-color: #E8B923;
  color: #1A1A1A;
  border-color: #E8B923;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #9B1529;
}

/* ===== COMPANY STORY ===== */
.company-story {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.text-content p {
  font-size: 17px;
  color: #5A5A5A;
  line-height: 1.9;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  padding: 80px 0;
  background-color: #FAF8F5;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 56px;
}

.mission-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 48px 40px;
  border: 1px solid #E5E0D8;
  border-top: 4px solid #9B1529;
}

.mission-card h3 {
  color: #9B1529;
  margin-bottom: 20px;
}

.mission-card p {
  color: #5A5A5A;
  margin-bottom: 0;
}

.values-section {
  background-color: #FFFFFF;
  padding: 48px 40px;
  border: 1px solid #E5E0D8;
}

.values-section h3 {
  color: #1A1A1A;
  margin-bottom: 32px;
  text-align: center;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 16px 0;
  border-bottom: 1px solid #E5E0D8;
  color: #5A5A5A;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: #9B1529;
  font-weight: 600;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.team-section h2 {
  text-align: center;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 56px;
}

.expertise-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 40px 24px;
  background-color: #FAF8F5;
  border: 1px solid #E5E0D8;
}

.expertise-card h3 {
  font-size: 18px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

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

.team-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid #E5E0D8;
}

.team-stats span {
  font-size: 15px;
  color: #5A5A5A;
  font-weight: 600;
}

/* ===== NUMBERS SECTION ===== */
.numbers-section {
  padding: 80px 0;
  background-color: #FAF8F5;
}

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

/* ===== REFERENCES ===== */
.references {
  padding: 60px 0;
}

.reference-card {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid #E5E0D8;
  border-left: 4px solid #E8B923;
  position: relative;
}

.reference-card h3 {
  color: #1A1A1A;
  margin-bottom: 12px;
}

.reference-card .category {
  display: inline-block;
  background-color: #FAF8F5;
  color: #9B1529;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

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

.reference-card p {
  color: #5A5A5A;
  margin-bottom: 24px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.services-list li {
  background-color: #FAF8F5;
  padding: 8px 16px;
  font-size: 13px;
  color: #5A5A5A;
  border: 1px solid #E5E0D8;
  margin-bottom: 0;
}

.reference-card .year {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 14px;
  color: #9B1529;
  font-weight: 600;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 80px 0;
  background-color: #FAF8F5;
}

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

/* ===== CERTIFICATION ===== */
.certification-overview {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.certification-overview h2 {
  text-align: center;
  margin-bottom: 24px;
}

.certification-overview > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
  color: #5A5A5A;
}

/* ===== STANDARDS ===== */
.standards {
  padding: 80px 0;
  background-color: #FAF8F5;
}

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

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

.standard-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 1px solid #E5E0D8;
  border-top: 3px solid #9B1529;
}

.standard-card h3 {
  color: #9B1529;
  font-size: 28px;
  margin-bottom: 8px;
}

.standard-card h4 {
  color: #1A1A1A;
  font-size: 18px;
  margin-bottom: 16px;
}

.standard-card p {
  color: #5A5A5A;
  margin-bottom: 0;
}

/* ===== AUTHORIZATIONS ===== */
.authorizations {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.auth-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.auth-card {
  background-color: #FAF8F5;
  padding: 40px;
  border: 1px solid #E5E0D8;
  border-left: 4px solid #E8B923;
}

.auth-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.auth-card p {
  color: #5A5A5A;
  margin-bottom: 0;
}

/* ===== PARTNERSHIPS ===== */
.partnerships {
  padding: 80px 0;
  background-color: #FAF8F5;
}

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

.partnerships > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #5A5A5A;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.partners-list li {
  background-color: #FFFFFF;
  padding: 20px 32px;
  border: 1px solid #E5E0D8;
  font-size: 15px;
  color: #5A5A5A;
  margin-bottom: 0;
}

/* ===== CONTACT ===== */
.contact-info {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.contact-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FAF8F5;
  padding: 40px 32px;
  border: 1px solid #E5E0D8;
  text-align: center;
}

.contact-card h3 {
  color: #9B1529;
  margin-bottom: 20px;
}

.contact-card p {
  color: #5A5A5A;
  margin-bottom: 12px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 80px 0;
  background-color: #FAF8F5;
}

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

.contact-form-section > .container > p {
  text-align: center;
  color: #5A5A5A;
  margin-bottom: 56px;
}

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

.form-note {
  background-color: #FFF9E6;
  border-left: 4px solid #E8B923;
  padding: 20px;
  margin-bottom: 32px;
  color: #5A5A5A;
  font-size: 14px;
}

.form-fields-preview {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-preview label {
  display: block;
  margin-bottom: 8px;
  color: #2C2C2C;
  font-size: 15px;
  font-weight: 600;
}

.input-placeholder {
  width: 100%;
  height: 48px;
  background-color: #FAF8F5;
  border: 1px solid #E5E0D8;
}

.textarea-placeholder {
  width: 100%;
  height: 120px;
  background-color: #FAF8F5;
  border: 1px solid #E5E0D8;
}

.button-preview {
  margin-top: 8px;
}

.privacy-note {
  margin-top: 24px;
  font-size: 13px;
  color: #5A5A5A;
  text-align: center;
}

.privacy-note a {
  color: #9B1529;
  text-decoration: underline;
}

/* ===== OFFICE INFO ===== */
.office-info {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.office-details {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FAF8F5;
  padding: 48px;
  border: 1px solid #E5E0D8;
}

.office-details h3 {
  color: #9B1529;
  margin-top: 32px;
  margin-bottom: 16px;
}

.office-details p {
  color: #5A5A5A;
  margin-bottom: 16px;
}

/* ===== BUSINESS INFO ===== */
.business-info {
  padding: 80px 0;
  background-color: #FAF8F5;
}

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

.business-details {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border: 1px solid #E5E0D8;
  text-align: center;
}

.business-details p {
  color: #5A5A5A;
  line-height: 1.9;
  margin-bottom: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.legal-content .intro {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 17px;
  color: #5A5A5A;
}

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

.legal-section h2 {
  color: #9B1529;
  font-size: 28px;
  margin-bottom: 20px;
}

.legal-section h3 {
  color: #1A1A1A;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-section p {
  color: #5A5A5A;
  margin-bottom: 20px;
}

.last-update {
  text-align: center;
  font-size: 14px;
  color: #5A5A5A;
  font-style: italic;
  margin-bottom: 48px;
}

.contact-box {
  max-width: 800px;
  margin: 48px auto 0;
  background-color: #FAF8F5;
  padding: 40px;
  border: 1px solid #E5E0D8;
  border-left: 4px solid #E8B923;
}

.contact-box h3 {
  color: #9B1529;
  margin-bottom: 20px;
}

.contact-box p {
  color: #5A5A5A;
  margin-bottom: 16px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F2ED 100%);
  padding: 120px 0 80px;
}

.thank-you-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.next-steps {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.step-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #FAF8F5;
  padding: 32px 24px;
  border: 1px solid #E5E0D8;
  text-align: center;
}

.step-card h3 {
  color: #9B1529;
  font-size: 20px;
  margin-bottom: 16px;
}

.step-card p {
  color: #5A5A5A;
  font-size: 15px;
  margin-bottom: 0;
}

.benefits-section {
  padding: 80px 0;
  background-color: #FAF8F5;
}

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

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

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border: 1px solid #E5E0D8;
  text-align: center;
}

.benefit-card h3 {
  color: #1A1A1A;
  font-size: 18px;
  margin-bottom: 12px;
}

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

.resources-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.resource-link {
  padding: 20px 40px;
  background-color: #FAF8F5;
  border: 1px solid #E5E0D8;
  color: #9B1529;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.resource-link:hover {
  background-color: #9B1529;
  color: #FFFFFF;
  border-color: #9B1529;
  transform: translateY(-2px);
}

.thank-you-info {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.info-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #FAF8F5;
  padding: 32px 24px;
  border: 1px solid #E5E0D8;
  text-align: center;
}

.info-card h3 {
  color: #9B1529;
  font-size: 20px;
  margin-bottom: 16px;
}

.info-card p {
  color: #5A5A5A;
  font-size: 15px;
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
footer {
  background-color: #2C2C2C;
  color: #FFFFFF;
  padding: 60px 0 24px;
}

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

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

.footer-section h3 {
  color: #E8B923;
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: #E8B923;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: #E8B923;
  padding-left: 4px;
}

.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: 13px;
  margin-bottom: 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E5E0D8;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1998;
  display: none;
}

#cookie-consent-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-text p {
  color: #2C2C2C;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: #9B1529;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

#accept-all-cookies {
  background-color: #9B1529;
  color: #FFFFFF;
  border-color: #9B1529;
}

#accept-all-cookies:hover {
  background-color: #7A1020;
  border-color: #7A1020;
}

#reject-all-cookies {
  background-color: transparent;
  color: #5A5A5A;
  border-color: #E5E0D8;
}

#reject-all-cookies:hover {
  background-color: #FAF8F5;
  border-color: #9B1529;
  color: #9B1529;
}

#cookie-settings {
  background-color: transparent;
  color: #9B1529;
  border-color: #9B1529;
}

#cookie-settings:hover {
  background-color: #9B1529;
  color: #FFFFFF;
}

/* ===== COOKIE PREFERENCES MODAL ===== */
#cookie-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#cookie-preferences-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  border: 1px solid #E5E0D8;
  position: relative;
}

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

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

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

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

.cookie-category:last-of-type {
  border-bottom: none;
}

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

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  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;
}

.cookie-modal-buttons button {
  flex: 1;
  min-width: 140px;
  padding: 14px 32px;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

#save-cookie-preferences {
  background-color: #9B1529;
  color: #FFFFFF;
  border-color: #9B1529;
}

#save-cookie-preferences:hover {
  background-color: #7A1020;
  border-color: #7A1020;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .step-card {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Layout adjustments */
  .section {
    margin-bottom: 60px;
    padding: 40px 0;
  }
  
  .container {
    padding: 0 16px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0 40px;
  }
  
  .trust-indicators {
    gap: 24px;
  }
  
  /* Grids to single column */
  .value-card,
  .service-card,
  .stat-card,
  .testimonial-card,
  .mission-card,
  .expertise-card,
  .standard-card,
  .contact-card,
  .step-card,
  .benefit-card,
  .info-card {
    flex: 1 1 100%;
  }
  
  .features-list li {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .btn {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Stats */
  .stat-number {
    font-size: 40px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Form */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Office & Business details */
  .office-details,
  .business-details {
    padding: 32px 24px;
  }
  
  /* Reference year positioning */
  .reference-card .year {
    position: static;
    display: block;
    margin-top: 16px;
  }
  
  /* Team stats */
  .team-stats {
    gap: 24px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .checkmark-icon {
    width: 64px;
    height: 64px;
    font-size: 36px;
  }
}

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

.hero-content {
  animation: fadeIn 0.8s ease-out;
}

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 2px solid #E8B923;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E8B923;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  #cookie-consent-banner,
  #cookie-preferences-modal,
  .cta-section,
  .hero-cta {
    display: none !important;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .container {
    max-width: 100%;
  }
}