
:root {
  --primary: #1a3c5a;
  --secondary: #e67e22;
  --accent: #3498db;
  --background-light: #f8f9fa;
  --background-dark: #2c3e50;
  --text-primary: #333333;
  --text-secondary: #777777;
  --success: #27ae60;
  --warning: #f39c12;
  --error: #e74c3c;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--secondary);
}

button, .uk-button {
  cursor: pointer;
  transition: var(--transition);
}

img {
  max-width: 100%;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  padding: 15px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 10px 0;
}

.site-logo {
  height: 40px;
  width: auto;
}

.main-nav .uk-navbar-nav > li > a {
  font-weight: 600;
  color: var(--primary);
  text-transform: none;
  min-height: 40px;
  position: relative;
}

.main-nav .uk-navbar-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.main-nav .uk-navbar-nav > li:hover > a::after,
.main-nav .uk-navbar-nav > li.uk-active > a::after {
  width: 100%;
}

.main-nav .uk-navbar-nav > li:hover > a,
.main-nav .uk-navbar-nav > li.uk-active > a {
  color: var(--secondary);
}

.mobile-nav-toggle {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--primary);
}


.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.uk-text-lead {
  color: white;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}


.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(26, 60, 90, 0.3);
  transition: var(--transition);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 60, 90, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
  transition: var(--transition);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}


.feature-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.feature-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.feature-card-content {
  padding: 25px;
  flex-grow: 1;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}


.contact-form {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.form-control {
  margin-bottom: 20px;
}

.form-control label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}

.form-control input,
.form-control textarea,
.form-control select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control input:focus,
.form-control textarea:focus,
.form-control select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 60, 90, 0.2);
  outline: none;
}


.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 50px 0 20px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

.footer-nav a {
  color: var(--white);
  opacity: 0.8;
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-nav a:hover {
  opacity: 1;
  padding-left: 5px;
  color: var(--secondary);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}


.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-settings-btn {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 0;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  overflow-y: auto;
}

.cookie-settings-container {
  background-color: var(--white);
  border-radius: 10px;
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  position: relative;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  background-color: var(--background-light);
}

.cookie-settings-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

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

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

.cookie-settings-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.cookie-settings-floating:hover {
  transform: scale(1.1);
  background-color: var(--primary);
  color: var(--white);
}


.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--white);
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.open .faq-answer {
  padding: 15px 20px;
  max-height: 1000px;
}


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

.animate-fade {
  animation: fadeIn 1s ease forwards;
}


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

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

.bg-dark h2, 
.bg-dark h3 {
  color: var(--white);
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 2.5rem; padding-bottom: 2.5rem; }


.iti {
  width: 100%;
}


@media (max-width: 959px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 639px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 20px;
  }
}