
:root {
  --navy: #1A365D;
  --gold: #D4AF37;
  --charcoal: #333F48;
  --slate: #627D98;
  --light-gray: #F7F9FC;
  --off-white: #F0F4F8;
  --cream: #FFF8E7;
  --success-green: #2E7D32;
  --alert-red: #C62828;
  --info-blue: #0288D1;
}


.text-navy {
  color: var(--navy);
}

.text-gold {
  color: var(--gold);
}

.text-charcoal {
  color: var(--charcoal);
}

.text-slate {
  color: var(--slate);
}

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

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

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

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

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

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

.border-navy {
  border-color: var(--navy);
}

.border-gold {
  border-color: var(--gold);
}


body {
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--charcoal);
  font-weight: 700;
}


.btn-primary {
  display: inline-block;
  background-color: var(--navy);
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: white;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: 2px solid white;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  display: inline-block;
  background-color: transparent;
  color: var(--navy);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: 2px solid var(--navy);
  transition: all 0.3s ease;
  text-align: center;
}

.btn-outline-primary:hover {
  background-color: var(--navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.benefit-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

.icon-container {
  margin-bottom: 1.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.service-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card > div:last-child {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card > div:last-child > div:last-child {
  margin-top: auto;
}

.testimonial-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.news-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card a {
  margin-top: auto;
}


.filter-button {
  display: inline-block;
  background-color: transparent;
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.filter-button:hover, .filter-button.active {
  background-color: var(--navy);
  color: white;
  border-color: var(--navy);
}


.aspect-w-16 {
  position: relative;
  padding-bottom: 56.25%;
}

.aspect-w-16 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-h-9 {
  padding-bottom: 56.25%;
}


input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}


@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#mobile-menu.show {
  display: block;
  animation: slideDown 0.3s ease forwards;
}


@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease forwards;
}


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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

#cookie-settings-modal.show > div {
  animation: scaleIn 0.3s ease forwards;
}


@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn-primary, .btn-secondary, .btn-outline-primary {
    display: block;
    width: 100%;
  }
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}


@media (min-width: 768px) {
  .transform.translate-x-8 {
    transform: translateX(2rem);
  }
  
  .transform.-translate-x-8 {
    transform: translateX(-2rem);
  }
  
  .transform.translate-y-8 {
    transform: translateY(2rem);
  }
  
  .transform.-translate-y-8 {
    transform: translateY(-2rem);
  }
  
  .md\:translate-x-12 {
    transform: translateX(3rem);
  }
  
  .md\:-translate-x-12 {
    transform: translateX(-3rem);
  }
}


@media print {
  header, footer, #cookie-banner, #cookie-settings-modal, .btn-primary, .btn-secondary, .btn-outline-primary {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background-color: #fff;
  }
  
  a {
    text-decoration: none;
    color: #000;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
}


:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary:focus, .btn-secondary:focus, .btn-outline-primary:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}


@-moz-document url-prefix() {
  .grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .grid-cols-1 {
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .md\:grid-cols-2 > * {
      width: calc(50% - 1rem);
      margin-right: 1rem;
    }
    
    .md\:grid-cols-3 > * {
      width: calc(33.333% - 1rem);
      margin-right: 1rem;
    }
    
    .md\:grid-cols-4 > * {
      width: calc(25% - 1rem);
      margin-right: 1rem;
    }
  }
}


@media not all and (min-resolution:.001dpcm) {
  @media {
    .safari-fix {
      display: flex;
      flex-wrap: wrap;
    }
  }
}