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

:root {
  --primary-blue: #1a4b8c;
  --primary-gray: #333740;
  --secondary-blue: #3a6ea5;
  --secondary-gray: #6c757d;
  --accent-gold: #e6b54a;
  --accent-green: #4a8d72;
  --bg-white: #ffffff;
  --bg-light-gray: #f5f7fa;
  --bg-lighter-gray: #eef2f7;
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-gray);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-blue);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-blue);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-gray);
}

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

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

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


.split-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .split-container {
    flex-direction: row;
    min-height: 90vh;
  }
  
  .split-left, .split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
  }
  
  .split-left {
    background-color: var(--bg-light-gray);
  }
  
  .split-right {
    background-color: var(--bg-white);
  }
}


.header {
  padding: 1rem 0;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.logo img {
  height: 100%;
}

.nav {
  display: none;
}

.nav ul {
  display: flex;
  list-style: none;
}

.nav li {
  margin-left: 2rem;
}

.nav a {
  font-weight: 500;
  color: var(--primary-gray);
}

.nav a:hover, .nav a.active {
  color: var(--primary-blue);
}

.menu-toggle {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
}


.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  z-index: 1001;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-gray);
}

.mobile-nav ul {
  list-style: none;
  margin-top: 2rem;
}

.mobile-nav li {
  margin-bottom: 1rem;
}

.mobile-nav a {
  font-weight: 500;
  color: var(--primary-gray);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-light-gray);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}


.hero {
  position: relative;
  padding: 4rem 0;
  background-color: var(--bg-light-gray);
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary-gray);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-image {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

@media (min-width: 992px) {
  .hero {
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
}


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

.about-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .about-container {
    flex-direction: row;
    align-items: center;
  }
  
  .about-image, .about-content {
    flex: 1;
  }
}


.features {
  padding: 4rem 0;
  background-color: var(--bg-light-gray);
}

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

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

.feature-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-title {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 75, 140, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-check-label {
  font-size: 0.9rem;
}

.btn-submit {
  width: 100%;
  padding: 14px;
}


.footer {
  background-color: var(--primary-gray);
  color: white;
  padding: 3rem 0 1.5rem;
}

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

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary-blue);
  color: white;
}

.footer-nav h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
  }
}


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

.cookie-consent.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-text {
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: none;
}

.cookie-settings-modal.active {
  display: block;
}

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

.cookie-settings-title {
  margin-bottom: 0;
}

.cookie-settings-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-gray);
}

.cookie-settings-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-light-gray);
}

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

.cookie-category-title {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 30px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
  background-color: var(--primary-blue);
}

input:checked + .cookie-toggle-slider:before {
  transform: translateX(30px);
}

.cookie-category-description {
  font-size: 0.9rem;
  color: var(--secondary-gray);
}

.cookie-settings-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.cookie-overlay.active {
  display: block;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .cookie-text {
    margin-right: 2rem;
  }
  
  .cookie-buttons {
    flex-shrink: 0;
  }
}


.article {
  padding: 4rem 0;
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-date {
  color: var(--secondary-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.article-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.article-content blockquote {
  border-left: 4px solid var(--primary-blue);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--secondary-gray);
}


.cards-section {
  padding: 4rem 0;
}

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

.card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-text {
  margin-bottom: 1.5rem;
  color: var(--secondary-gray);
}

.card-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.card-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.card-link:hover i {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.map-container {
  height: 400px;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}


.breadcrumbs {
  padding: 1rem 0;
  background-color: var(--bg-lighter-gray);
}

.breadcrumbs-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
}

.breadcrumbs-item:not(:last-child):after {
  content: "/";
  margin: 0 0.5rem;
  color: var(--secondary-gray);
}

.breadcrumbs-link {
  color: var(--secondary-gray);
  font-size: 0.9rem;
}

.breadcrumbs-link.active {
  color: var(--primary-blue);
  font-weight: 500;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}


.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  padding: 2rem;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}

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

.thank-you-text {
  max-width: 600px;
  margin-bottom: 2rem;
}


.iti {
  width: 100%;
}