@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Jost:wght@300;400;500;600&display=swap');


:root {
  --primary: #0D3B66;
  --secondary: #046E8F;
  --accent: #F18F01;
  --success: #2E933C;
  --warning: #E55934;
  --bg-light: #F6F8FA;
  --bg-dark: #263238;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --border: #D1D5DB;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Tenor Sans', serif;
  color: var(--primary);
}


.site-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
}

.nav-link {
  position: relative;
  transition: color 0.3s;
}

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

.fas {
  color: white;
}

.bg-primary h1, .bg-primary p, .bg-primary div, .bg-primary h3, footer h3 {
  color: white;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}


.hero-section {
  background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(13, 59, 102, 0.95));
  color: white;
  position: relative;
}

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


.process-step {
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
  transform: translateY(-50%);
}

.process-step:last-child::after {
  display: none;
}


.calculator-container {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-top: 4px solid var(--accent);
}

.calculator-result {
  background-color: var(--primary);
  color: white;
  padding: 2rem;
  transition: all 0.3s;
}

.calculator-result h3 {
  color: white;
}


.case-study-card {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

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


.form-control {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(4, 110, 143, 0.2);
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s, transform 0.2s;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #0a2e50;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s, transform 0.2s;
  font-weight: 500;
}

.btn-accent:hover {
  background-color: #e08400;
  transform: translateY(-2px);
}

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

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


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

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

.footer a:hover {
  color: white;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  padding: 1rem;
  display: none;
}

.cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 98;
}


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

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}


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

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: white;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s;
    padding: 1rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu.active {
    transform: translateX(0);
    display: block;
  }
  
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
}


@media (max-width: 640px) {
  .process-step::after {
    display: none;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .process-step {
    margin-bottom: 1.5rem;
  }
}


.iti {
  width: 100%;
}


.calculator-input-group {
  margin-bottom: 1.5rem;
}

.calculator-input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: #d7dcdf;
  outline: none;
  margin-top: 0.5rem;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: background 0.3s;
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb:hover {
  background: #e08400;
}

.range-slider::-moz-range-thumb:hover {
  background: #e08400;
}

.range-value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: var(--text-primary);
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #d7dcdf;
  padding: 5px 10px;
  margin-left: 8px;
}


.accordion-item {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  background-color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: rgba(4, 110, 143, 0.05);
}

.accordion-header h3 {
  margin: 0;
  display: flex;
  align-items: center;
}

.accordion-header h3 i {
  margin-right: 1rem;
  color: var(--accent);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #f9f9f9;
}

.accordion-content-inner {
  padding: 1rem 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-toggle-icon {
  transition: transform 0.3s;
}

.accordion-item.active .accordion-toggle-icon {
  transform: rotate(180deg);
}


.chart-container {
  width: 100%;
  height: 300px;
  margin: 2rem 0;
}


.security-icon {
  color: var(--success);
  margin-right: 0.5rem;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(46, 147, 60, 0.1);
  color: var(--success);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.security-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--success);
}


.privacy-content h2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

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

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

.last-updated {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
}