
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;700&display=swap');

:root {
  --primary: #1A365D;
  --secondary: #718096;
  --accent: #3182CE;
  --bg-light: #F7FAFC;
  --bg-dark: #2D3748;
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --success: #38A169;
  --alert: #E53E3E;
  --border: #E2E8F0;
}


body {
  font-family: 'Figtree', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover, a:focus {
  color: var(--primary);
  text-decoration: none;
}

.btn {
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--accent);
  border-color: var(--accent);
}


.navbar {
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: var(--primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--accent);
}

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

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


.hero-section {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.7));
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: white;
}


.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}


.card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
  height: 100%;
}

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

.card-title {
  color: var(--primary);
  font-weight: 700;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}


.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--border);
  z-index: -1;
}


.metrics-table {
  width: 100%;
  margin-bottom: 2rem;
}

.metrics-table th {
  background-color: var(--primary);
  color: white;
  padding: 1rem;
}

.metrics-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}


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

.form-control {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(49, 130, 206, 0.25);
}


.iti {
  width: 100%;
}


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

.accordion-button:not(.collapsed) {
  color: white;
  background-color: var(--primary);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(26, 54, 93, 0.25);
}

.accordion-body {
  padding: 1.5rem;
}


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

.team-role-title {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.skill-tag {
  background-color: var(--bg-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}


.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: #CBD5E0;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.875rem;
}


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

.cookie-settings-modal .modal-content {
  border-radius: 0.5rem;
}

.cookie-settings-modal .modal-header {
  background-color: var(--primary);
  color: white;
  border-radius: 0.5rem 0.5rem 0 0;
}

.cookie-settings-modal .modal-title {
  color: white;
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-weight: 700;
  margin: 0;
}


.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 0;
}

.article-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.article-meta {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.article-content {
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}


.thank-you-section {
  text-align: center;
  padding: 8rem 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
}

.map-container {
  height: 450px;
  margin-bottom: 2rem;
}


@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .metrics-table {
    font-size: 0.875rem;
  }
  
  .metrics-table th, 
  .metrics-table td {
    padding: 0.75rem;
  }
}