body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.bg-primary-custom {
  background: linear-gradient(135deg, #1e3a8a 0%, #0891b2 100%) !important;
}

.text-primary-custom {
  color: #1e3a8a !important;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #1e3a8a 0%, #0891b2 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  color: white;
}

.bg-success-custom {
  background-color: #059669 !important;
}

.text-success-custom {
  color: #059669 !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #0891b2 50%, #059669 100%);
}

.n4a2-main-wrap-hero {
  position: relative;
  overflow: hidden;
}

.n4a2-main-wrap-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(8, 145, 178, 0.8) 100%);
  z-index: 1;
}

.n4a2-main-wrap-hero > .container {
  position: relative;
  z-index: 2;
}

.n4a2-main-wrap-header {
  backdrop-filter: blur(10px);
  background-color: rgba(30, 58, 138, 0.95) !important;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0891b2 !important;
}

.card {
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn {
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

.display-4 {
  font-weight: 700;
  line-height: 1.2;
}

.display-5 {
  font-weight: 700;
  line-height: 1.3;
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
}

.rounded-4 {
  border-radius: 1.5rem !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.n4a2-main-wrap-about .container {
  max-width: 1200px;
}

.n4a2-main-wrap-services .card {
  border-radius: 1.25rem;
  background: white;
  backdrop-filter: blur(10px);
}

.n4a2-main-wrap-advantages {
  background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
}

.n4a2-main-wrap-process {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.n4a2-main-wrap-team {
  background: linear-gradient(45deg, #f1f5f9 0%, #e2e8f0 100%);
}

.n4a2-main-wrap-testimonials {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.n4a2-main-wrap-contact {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.n4a2-main-wrap-footer {
  background-color: #0f172a !important;
}

.text-warning {
  color: #f59e0b !important;
}

.form-control {
  border-radius: 0.75rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.blockquote {
  font-style: italic;
  font-size: 1rem;
}

.min-vh-100 {
  min-height: 100vh;
}

.position-relative::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #1e3a8a, transparent);
  transform: translateY(-50%);
}

.position-relative:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .position-relative::after {
    display: none;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

#cookieConsent {
  z-index: 1050;
  backdrop-filter: blur(10px);
}

.bg-info {
  background-color: #0891b2 !important;
}

.text-info {
  color: #0891b2 !important;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.fixed-top {
  z-index: 1030;
}

.border-top {
  border-top: 1px solid #e2e8f0 !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

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

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

.ms-3 {
  margin-left: 1rem !important;
}

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

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

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.g-3 {
  gap: 1rem;
}

.g-4 {
  gap: 1.5rem;
}

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

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

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

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

.mt-4 {
  margin-top: 1.5rem !important;
}

.col-lg-8 {
  max-width: 66.666667%;
}

@media (max-width: 991.98px) {
  .col-lg-8 {
    max-width: 100%;
  }
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

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

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

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

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

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

.justify-content-lg-end {
  justify-content: flex-end !important;
}

@media (max-width: 991.98px) {
  .justify-content-lg-end {
    justify-content: flex-start !important;
  }
}

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

.text-muted {
  color: #6b7280 !important;
}

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

.text-dark {
  color: #1f2937 !important;
}

.bg-light {
  background-color: #f8fafc !important;
}

.bg-dark {
  background-color: #1e293b !important;
}

.border-0 {
  border: 0 !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

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

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.small {
  font-size: 0.875em;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

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

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

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

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

.start-0 {
  left: 0 !important;
}

.end-0 {
  right: 0 !important;
}

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

@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 575.98px) {
  .container {
    padding: 0 12px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-12,
.col-sm-6,
.col-md-6,
.col-lg-3,
.col-lg-4,
.col-lg-6,
.col-lg-8 {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}