/* ===================================
   TURNISECURE - MODERN BOLD DESIGN
   Modern Bold Style with Strong Typography
   =================================== */

/* 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, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography - Bold Modern Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0D2847;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

a {
  text-decoration: none;
  color: inherit;
  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 */
header {
  background-color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #C0281A;
}

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

.logo-link img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  font-weight: 700;
  font-size: 15px;
  color: #0D2847;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background-color: #C0281A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-button {
  display: none;
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(192, 40, 26, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(192, 40, 26, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0D2847;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(13, 40, 71, 0.2);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #0D2847;
  z-index: 2000;
  padding: 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: #C0281A;
  color: #FFFFFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(192, 40, 26, 0.3);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background-color: #E74C3C;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 60px;
}

.mobile-nav a {
  color: #FFFFFF;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(192, 40, 26, 0.2);
  border-left-color: #C0281A;
  padding-left: 28px;
}

/* Buttons - Bold Modern Style */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(192, 40, 26, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(192, 40, 26, 0.4);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #0D2847;
  border: 3px solid #0D2847;
  box-shadow: 0 6px 20px rgba(13, 40, 71, 0.15);
}

.btn-secondary:hover {
  background-color: #0D2847;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13, 40, 71, 0.25);
}

.btn-link {
  background-color: transparent;
  color: #C0281A;
  padding: 12px 24px;
  border: 2px solid #C0281A;
  font-weight: 700;
}

.btn-link:hover {
  background-color: #C0281A;
  color: #FFFFFF;
  transform: translateX(4px);
}

/* Hero Section - Bold & Impactful */
.hero {
  background: linear-gradient(135deg, #0D2847 0%, #1A4D8F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, #C0281A 25%, transparent 25%),
    linear-gradient(-45deg, #C0281A 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #C0281A 75%),
    linear-gradient(-45deg, transparent 75%, #C0281A 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.03;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

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

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

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

.badge {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.benefits,
.services,
.process,
.testimonials,
.faq,
.cta-final {
  padding: 80px 20px;
}

.benefits {
  background-color: #F8F9FA;
}

.services {
  background-color: #FFFFFF;
}

.process {
  background-color: #F8F9FA;
}

.testimonials {
  background-color: #0D2847;
  color: #FFFFFF;
}

.cta-final {
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
  text-align: center;
}

.section h2,
.benefits h2,
.services h2,
.process h2,
.testimonials h2,
.faq h2,
.cta-final h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials h2,
.cta-final h2 {
  color: #FFFFFF;
}

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

/* Grid Layouts using Flexbox */
.benefits-grid,
.services-grid,
.testimonial-grid,
.faq-list,
.categories-grid,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* Cards - Bold Design */
.benefit-card,
.service-card,
.testimonial-card,
.category-card,
.feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 400px;
  border: 3px solid transparent;
  position: relative;
}

.benefit-card::before,
.service-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #C0281A 0%, #E74C3C 100%);
  border-radius: 12px 12px 0 0;
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: #C0281A;
}

.benefit-card img,
.category-card img,
.feature-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  padding: 16px;
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  border-radius: 12px;
}

.service-card h3,
.benefit-card h3,
.category-card h3 {
  margin-bottom: 16px;
  color: #0D2847;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 24px;
  line-height: 1.7;
}

.price,
.price-tag {
  font-size: 32px;
  font-weight: 800;
  color: #C0281A;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

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

.step {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 3px solid #F8F9FA;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #C0281A;
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(192, 40, 26, 0.3);
}

/* Testimonials - High Contrast */
.testimonial-card {
  background-color: #FFFFFF;
  color: #2C3E50;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #C0281A;
  position: relative;
}

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

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.client-info strong {
  font-weight: 700;
  color: #0D2847;
  font-size: 16px;
}

.client-info span {
  color: #666;
  font-size: 14px;
}

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

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  flex-direction: column;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border-left: 6px solid #C0281A;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  color: #0D2847;
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-item p {
  color: #555;
  line-height: 1.8;
}

/* CTA Final Section */
.urgency {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px 32px;
  border-radius: 8px;
  margin: 32px 0;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

/* Footer */
footer {
  background-color: #0D2847;
  color: #FFFFFF;
  padding: 60px 20px 20px;
}

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

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #C0281A;
  padding-bottom: 12px;
  display: inline-block;
}

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

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

.footer-column nav a:hover {
  color: #C0281A;
  padding-left: 8px;
}

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

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #C0281A;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: #C0281A;
  color: #FFFFFF;
  border: none;
}

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

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

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

.cookie-settings {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-settings:hover {
  border-color: #C0281A;
  color: #C0281A;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #C0281A;
  color: #FFFFFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

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

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 32px;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 32px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #C0281A;
}

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

.cookie-slider.disabled {
  background-color: #0D2847;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #0D2847 0%, #1A4D8F 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

/* Service Details */
.services-detailed {
  padding: 60px 20px;
}

.service-detail {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #C0281A;
}

.service-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.feature-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  padding-left: 32px;
  position: relative;
  line-height: 1.8;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C0281A;
  font-weight: bold;
  font-size: 20px;
}

/* Benefits Items */
.service-benefits {
  background-color: #F8F9FA;
  padding: 60px 20px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 250px;
  max-width: 300px;
  border-top: 4px solid #C0281A;
}

/* Contact Page */
.contact-methods {
  padding: 60px 20px;
}

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

.contact-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 300px;
  max-width: 400px;
  border-top: 6px solid #C0281A;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.availability {
  color: #666;
  font-size: 14px;
  margin-top: 12px;
}

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

.form-info {
  max-width: 700px;
  margin: 0 auto;
}

.form-display {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

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

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0D2847;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #C0281A;
  box-shadow: 0 0 0 3px rgba(192, 40, 26, 0.1);
}

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

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #0D2847;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #C0281A;
}

.legal-content h3 {
  color: #0D2847;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.8;
}

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0D2847 0%, #1A4D8F 100%);
  color: #FFFFFF;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 800;
  margin: 0 auto 32px;
  box-shadow: 0 12px 32px rgba(192, 40, 26, 0.3);
}

.confirmation {
  font-size: 20px;
  margin-bottom: 24px;
}

.next-steps-label {
  font-size: 18px;
  font-weight: 700;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.steps-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #C0281A;
  position: relative;
}

.step-item .step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(192, 40, 26, 0.3);
}

.step-item h3 {
  margin-bottom: 8px;
  color: #0D2847;
}

.timeframe {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  background-color: #F8F9FA;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #C0281A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Reference Page Specific */
.testimonials-featured {
  padding: 60px 20px;
}

.testimonials-large {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-large {
  flex: 1 1 450px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #C0281A;
}

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

.testimonials-masonry {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* Case Studies */
.case-studies {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.case-card {
  flex: 1 1 450px;
  max-width: 550px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #C0281A;
}

.case-card h3 {
  color: #0D2847;
  margin-bottom: 20px;
}

.case-card p {
  margin-bottom: 16px;
}

.case-card strong {
  color: #C0281A;
  font-weight: 700;
}

/* Results Statistics */
.results-statistics {
  padding: 60px 20px;
}

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

.metric-card {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #C0281A;
}

.metric-number {
  font-size: 56px;
  font-weight: 800;
  color: #C0281A;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.metric-label {
  font-size: 18px;
  font-weight: 700;
  color: #0D2847;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Product Categories */
.product-categories {
  padding: 60px 20px;
}

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

.story-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #F8F9FA;
  padding: 40px;
  border-radius: 12px;
  border-left: 6px solid #C0281A;
}

.story-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* Mission Vision */
.mission-vision {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.mission-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(192, 40, 26, 0.3);
}

.mission-card h2 {
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 20px;
}

.mission-card p {
  font-size: 18px;
  line-height: 1.8;
}

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

.values h3 {
  text-align: center;
  margin-bottom: 32px;
  color: #0D2847;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values li {
  padding: 20px 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
  border-left: 4px solid #C0281A;
  font-size: 17px;
  font-weight: 600;
  color: #0D2847;
}

/* Statistics Section */
.statistics {
  padding: 60px 20px;
}

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

.stat-card {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, #0D2847 0%, #1A4D8F 100%);
  color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(13, 40, 71, 0.3);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Why Choose */
.why-choose {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.reason-card {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 6px solid #C0281A;
}

.reason-card h3 {
  margin-bottom: 16px;
  color: #0D2847;
}

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

.guarantees-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantees-list li {
  padding: 20px 24px 20px 56px;
  background-color: #F8F9FA;
  border-radius: 8px;
  border-left: 6px solid #C0281A;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

.guarantees-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #C0281A;
  font-size: 24px;
  font-weight: 800;
}

/* Office Hours */
.office-hours {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 2px solid #F8F9FA;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 700;
  color: #0D2847;
}

.hours-row span:last-child {
  color: #C0281A;
  font-weight: 700;
}

.hours-note {
  text-align: center;
  color: #666;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
}

/* Consultation Benefits */
.consultation-benefits {
  padding: 60px 20px;
}

.benefits-checklist {
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-checklist li {
  padding: 20px 24px 20px 56px;
  background-color: #F8F9FA;
  border-radius: 8px;
  border-left: 6px solid #C0281A;
  font-size: 17px;
  position: relative;
}

.benefits-checklist li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #C0281A;
  font-size: 24px;
  font-weight: 800;
}

/* Response Info */
.response-info {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.info-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 6px solid #C0281A;
}

.info-box h2 {
  color: #0D2847;
  margin-bottom: 20px;
}

.note {
  color: #666;
  font-size: 14px;
  margin-top: 16px;
}

/* While Waiting */
.while-waiting {
  padding: 60px 20px;
}

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

.suggestion-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 6px solid #C0281A;
}

.suggestion-card h3 {
  margin-bottom: 16px;
  color: #0D2847;
}

/* Email Confirmation */
.email-confirmation {
  padding: 60px 20px;
}

.email-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

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

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
}

/* Product Selection */
.product-selection {
  padding: 60px 20px;
  background-color: #F8F9FA;
  text-align: center;
}

.guide-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.guide-step {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.guide-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(192, 40, 26, 0.3);
}

/* Technical Support */
.technical-support {
  padding: 60px 20px;
}

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

.support-item {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 6px solid #C0281A;
}

.support-item h3 {
  margin-bottom: 12px;
  color: #0D2847;
}

/* CTA Section */
.cta-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #C0281A 0%, #E74C3C 100%);
  color: #FFFFFF;
}

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

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

.contact-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.response-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* Client Types */
.client-types {
  padding: 60px 20px;
}

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

.segment-card {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 6px solid #C0281A;
}

.segment-card h3 {
  margin-bottom: 12px;
  color: #0D2847;
}

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

.location-info {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.address-block p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.address-block strong {
  color: #0D2847;
  font-weight: 700;
}

/* Thank You Page Specific */
.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0D2847 0%, #1A4D8F 100%);
}

.thank-you-content {
  text-align: center;
  color: #FFFFFF;
}

.thank-you-content h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

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

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

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

  .subheadline {
    font-size: 22px;
  }

  .benefit-card,
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 32px);
  }

  .step {
    flex: 1 1 calc(50% - 32px);
  }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
  .cta-button {
    display: inline-block;
  }

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

  .benefit-card,
  .category-card {
    flex: 1 1 calc(33.333% - 32px);
  }

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

  .step {
    flex: 1 1 calc(25% - 32px);
  }

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

  .footer-content {
    flex-wrap: nowrap;
  }

  .footer-column {
    flex: 1 1 auto;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

/* Accessibility */
.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;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #C0281A;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu,
  .cookie-consent,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}