
:root {
  --primary: #1E3A8A;
  --secondary: #0EA5E9;
  --accent: #F59E0B;
  --success: #10B981;
  --warning: #F43F5E;
  --bg-light: #F8FAFC;
  --bg-dark: #0F172A;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-light: #F1F5F9;
}

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

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

p {
  margin-bottom: 1rem;
}

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

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

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-secondary {
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


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

.site-header .uk-navbar-container {
  background: transparent;
}

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

.uk-navbar-nav > li > a {
  color: var(--text-primary);
  font-weight: 500;
  min-height: 70px;
  text-transform: none;
}

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


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

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
}


.hero-section {
  padding: 4rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-image {
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


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

.kpi-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-5px);
}

.kpi-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.kpi-label {
  font-size: 1rem;
  color: var(--text-secondary);
}


.process-section {
  padding: 4rem 0;
  background-color: white;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

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

.process-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}


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

.example-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: 100%;
}

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

.example-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.example-saving {
  font-weight: 700;
  color: var(--success);
}


.services-section {
  padding: 4rem 0;
  background-color: white;
}

.service-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--bg-light);
  height: 100%;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.service-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}


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

.contact-form {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

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

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  font-family: 'Inter', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  min-height: 150px;
  font-family: 'Inter', sans-serif;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}


.cases-section {
  padding: 4rem 0;
  background-color: white;
}

.case-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.case-problem {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.case-solution {
  margin-bottom: 0.5rem;
}

.case-saving {
  font-weight: 700;
  color: var(--success);
}


.cta-section {
  padding: 4rem 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-text {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.btn-cta {
  background-color: white;
  color: var(--primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--accent);
  color: white;
}


.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

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

.footer-link {
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

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

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: var(--text-secondary);
}


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

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

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cookie-settings {
  background-color: transparent;
  border: 1px solid var(--text-secondary);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-accept {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept:hover {
  background-color: var(--secondary);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-title {
  margin: 0;
  font-size: 1.5rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.cookie-category {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
}

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

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

.cookie-save {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  background-color: var(--secondary);
}




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

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

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

.thank-you-text {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}


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

.news-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-image {
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.news-excerpt {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.news-link {
  align-self: flex-start;
}


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

.article-header {
  margin-bottom: 2rem;
}

.article-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

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

.article-content {
  font-size: 1.125rem;
  line-height: 1.8;
}

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

.article-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.article-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.article-image {
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


.contact-info-section {
  padding: 4rem 0;
}

.contact-info-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.contact-info-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.contact-info-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-map {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


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

.approach-image {
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.approach-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

.approach-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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


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

.optimization-image {
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.optimization-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

.optimization-chart {
  margin: 2rem 0;
}


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

.policy-content {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.policy-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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


@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .kpi-value {
    font-size: 2rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .example-card, .service-card, .case-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}


.iti {
  width: 100%;
}


.form-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.form-modal.active {
  display: flex;
}

.form-modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.form-modal-icon {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 1rem;
}

.form-modal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.form-modal-text {
  margin-bottom: 1.5rem;
}

.form-modal-button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-modal-button:hover {
  background-color: var(--secondary);
}