* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Outfit', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}

:root {
  --primary-color: #6366f1;
  --secondary-color: #f8fafc;
  --accent-color: #f59e0b;
  --text-color: #0f172a;
  --bg-color: #ffffff;
  --bg-secondary: #f1f5f9;
  --gradient-start: #6366f1;
  --gradient-end: #8b5cf6;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  font-size: calc(1.425rem + 1.1vw);
}

h3 {
  font-size: calc(1.375rem + .8vw);
}

h5 {
  font-size: 1.375rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  color: var(--primary-color);
}

a:hover {
  color: var(--accent-color);
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
}

input, button, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.display-2 {
  font-size: calc(1.625rem + 3.6vw);
  font-weight: 700;
  line-height: 1.15;
}

.display-3 {
  font-size: calc(1.675rem + 4.2vw);
  font-weight: 700;
  line-height: 1.15;
}

.display-4 {
  font-size: calc(1.575rem + 3vw);
  font-weight: 700;
  line-height: 1.15;
}

.display-5 {
  font-size: calc(1.525rem + 2.4vw);
  font-weight: 700;
  line-height: 1.15;
}

.display-6 {
  font-size: calc(1.475rem + 1.8vw);
  font-weight: 700;
  line-height: 1.15;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.g-5 > * {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.g-7 > * {
  padding-right: 2rem;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.form-label {
  margin-bottom: .75rem;
  display: inline-block;
  font-weight: 600;
  color: var(--text-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: .75rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.form-control:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.15);
}

.form-select {
  display: block;
  width: 100%;
  padding: 1rem 3.75rem 1rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: .75rem;
  appearance: none;
  transition: border-color .3s ease, box-shadow .3s ease;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230f172a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 16px 12px;
}

.form-select:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.15);
}

.form-check {
  display: flex;
  align-items: flex-start;
  min-height: 1.75rem;
  padding-left: 0;
  margin-bottom: 0;
}

.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
  margin-right: .75rem;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: .375rem;
  appearance: none;
  cursor: pointer;
  transition: all .3s ease;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-label {
  cursor: pointer;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  border-radius: .75rem;
  transition: all .3s ease;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-action-1 {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-action-1:hover {
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: white;
  border: none;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
  color: white;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

.btn-light:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-sm {
  padding: .625rem 1.25rem;
  font-size: 0.95rem;
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.nav-link {
  display: block;
  padding: .75rem 1.25rem;
  transition: color .3s ease;
  color: var(--text-color);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-color);
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-right: 1.25rem;
  font-size: 1.5rem;
  white-space: nowrap;
  font-weight: 700;
  color: var(--text-color);
}

.navbar-brand:hover {
  color: var(--text-color);
}

.brand-highlight {
  color: var(--primary-color);
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: .5rem .875rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: .75rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2899, 102, 241, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.collapse:not(.show) {
  display: none;
}

.btn-contact {
  background-color: var(--primary-color);
  color: white !important;
  padding: .75rem 1.75rem;
  border-radius: .75rem;
  margin-left: 1rem;
}

.btn-contact:hover {
  background-color: var(--accent-color);
  color: white !important;
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url('../textures/y9tds5.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.92) 0%, rgba(139, 92, 246, 0.88) 100%);
}

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

.accent-text {
  color: var(--accent-color);
  position: relative;
}

.bg-bg-2 {
  background-color: var(--bg-secondary);
}

.bg-bg-3 {
  background-color: var(--bg-color);
}

.text-action-1 {
  color: var(--primary-color) !important;
}

.text-white {
  color: white !important;
}

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

.text-decoration-underline {
  text-decoration: underline !important;
}

.rounded-3 {
  border-radius: 1rem !important;
}

.shadow-custom {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.quote-box {
  background-color: var(--bg-secondary);
  padding: 3rem;
  border-radius: 1rem;
  border-left: 6px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-box blockquote {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.7;
}

.pricing-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 2px solid #e2e8f0;
  transition: all .3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.pricing-featured {
  border-color: var(--primary-color);
  background: linear-gradient(to bottom, rgba(99, 102, 241, 0.05) 0%, white 100%);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.price-tag {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.cta-step {
  position: relative;
  padding-left: 4rem;
}

.cta-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.contact-form-wrapper {
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.footer-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #cbd5e1;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-heading {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  transition: color .3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.newsletter-form input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.newsletter-form input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  color: white;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
}

.cookie-banner a {
  color: white;
  font-weight: 600;
}

.cookie-banner .btn {
  font-size: 0.95rem;
  padding: .625rem 1.5rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.resource-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #e2e8f0;
  transition: all .3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.resource-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1.5rem;
}

.case-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: all .3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.case-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-card-body {
  padding: 2rem;
}

.case-tag {
  display: inline-block;
  padding: .375rem 1rem;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  border-radius: .5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.stats-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  padding: 1.5rem;
  border-radius: .75rem;
  text-align: center;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stats-label {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.privacy-content {
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.privacy-content h3 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content h4 {
  color: var(--text-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
}

.table thead th {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #e2e8f0;
}

.table tbody td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.table tbody tr:hover {
  background-color: var(--bg-secondary);
}

.d-flex {
  display: flex !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.mt-3 {
  margin-top: .875rem !important;
}

.mt-8 {
  margin-top: 2.25rem !important;
}

.mt-13 {
  margin-top: 3.75rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: .75rem !important;
}

.mb-3 {
  margin-bottom: .875rem !important;
}

.mb-4 {
  margin-bottom: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.75rem !important;
}

.mb-7 {
  margin-bottom: 2rem !important;
}

.mb-8 {
  margin-bottom: 2.25rem !important;
}

.mb-9 {
  margin-bottom: 2.5rem !important;
}

.mb-11 {
  margin-bottom: 3.25rem !important;
}

.mb-12 {
  margin-bottom: 3.5rem !important;
}

.mb-13 {
  margin-bottom: 3.75rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-2 {
  margin-right: .75rem !important;
}

.me-3 {
  margin-right: .875rem !important;
}

.me-4 {
  margin-right: 1.25rem !important;
}

.me-5 {
  margin-right: 1.5rem !important;
}

.ps-lg-11 {
  padding-left: 3.25rem !important;
}

.py-3 {
  padding-top: .875rem !important;
  padding-bottom: .875rem !important;
}

.py-4 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-8 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.py-10 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.py-11 {
  padding-top: 3.25rem !important;
  padding-bottom: 3.25rem !important;
}

.p-13 {
  padding: 3.75rem !important;
}

.px-9 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.fs-1 {
  font-size: 1.625rem !important;
}

.fs-2 {
  font-size: 1.4375rem !important;
}

.fs-3 {
  font-size: 1.3125rem !important;
}

.fs-4 {
  font-size: 1.1875rem !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

@media (min-width: 576px) {
  .container {
    max-width: 560px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
  
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  
  .text-md-start {
    text-align: left !important;
  }
  
  .text-md-end {
    text-align: right !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 980px;
  }
  
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .d-lg-block {
    display: block !important;
  }
  
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .py-lg-21 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  
  .ps-lg-11 {
    padding-left: 3.25rem !important;
  }
  
  .text-lg-start {
    text-align: left !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
  
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  
  h2 {
    font-size: 2.125rem;
  }
  
  h3 {
    font-size: 1.875rem;
  }
  
  .display-2 {
    font-size: 4rem;
  }
  
  .display-3 {
    font-size: 4.75rem;
  }
  
  .display-4 {
    font-size: 3.5rem;
  }
  
  .display-5 {
    font-size: 3.25rem;
  }
  
  .display-6 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
  
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: 70vh;
    padding: 4rem 0;
  }
  
  .btn-contact {
    margin-left: 0;
    margin-top: 1rem;
    display: block;
    text-align: center;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .display-2 {
    font-size: 2.25rem;
  }
  
  .fs-1 {
    font-size: 1.25rem !important;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .quote-box {
    padding: 2rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .privacy-content {
    padding: 2rem;
  }
}
