
:root {
  --primary: #1e5f74;
  --secondary: #3a9188;
  --accent-positive: #4caf50;
  --accent-negative: #f44336;
  --background-light: #f5f7fa;
  --background-dark: #2c3e50;
  --text-primary: #333333;
  --text-secondary: #6c757d;
  --border-light: #e9ecef;
  --cta: #ff9800;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-primary);
  background-color: var(--background-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 500;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.5rem;
}

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

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


.container {
  padding: 0 15px;
  margin: 0 auto;
}


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

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

.site-header .uk-logo {
  height: 60px;
}

.site-header .uk-navbar-nav > li > a {
  color: var(--text-primary);
  font-size: 1rem;
  text-transform: none;
  transition: color 0.3s;
}

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

.site-header .uk-navbar-right a {
  color: var(--primary);
  font-weight: 500;
}


.hero {
  background-color: var(--primary);
  color: white;
  padding: 80px 0;
  position: relative;
}

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

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}


.dashboard-stats {
  padding: 60px 0;
  background-color: white;
}

.stat-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

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

.stat-card .stat-value {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

.stat-card.positive .stat-value {
  color: var(--accent-positive);
}

.stat-card.negative .stat-value {
  color: var(--accent-negative);
}


.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.data-table th,
.data-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.data-table th {
  background-color: var(--primary);
  color: white;
}

.data-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.data-table tr:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


.process-steps {
  padding: 60px 0;
  background-color: var(--background-light);
}

.step-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
}

.step-card .step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 30px;
  height: 30px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}


.before-after {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.before-after img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after .before,
.before-after .after {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: 500;
}

.before-after .before {
  background: rgba(244, 67, 54, 0.7);
}

.before-after .after {
  left: auto;
  right: 0;
  background: rgba(76, 175, 80, 0.7);
}


.case-studies {
  padding: 60px 0;
  background-color: white;
}

.case-card {
  background: var(--background-light);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.case-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.case-card .case-result {
  color: var(--accent-positive);
  font-weight: 500;
}


.faq {
  padding: 60px 0;
  background-color: var(--background-light);
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  background-color: var(--primary);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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


.contact-form {
  background: inherit;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.uk-checkbox {
  width: 40px !important;
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  outline: none;
}

.contact-form .error {
  color: var(--accent-negative);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contact-form .btn {
  background-color: var(--cta);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .btn:hover {
  background-color: darken(var(--cta), 10%);
}

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

.form-checkbox input {
  margin-top: 5px;
  margin-right: 10px;
  width: auto;
}


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

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

.article-header h1 {
  margin-bottom: 0.5rem;
}

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

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

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

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

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
}


.site-footer {
  background-color: var(--background-dark);
  color: white;
  padding: 60px 0 30px;
}

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

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

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

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

.site-footer a:hover {
  color: white;
  text-decoration: none;
}

.site-footer .footer-copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.site-footer .footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transition: background-color 0.3s;
}

.site-footer .footer-social a:hover {
  background-color: var(--secondary);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-dark);
  color: white;
  padding: 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-consent .cookie-text {
  margin-bottom: 1rem;
}

.cookie-consent .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent .cookie-btn {
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  border: none;
}

.cookie-consent .accept-all {
  background-color: var(--accent-positive);
  color: white;
}

.cookie-consent .reject-all {
  background-color: var(--accent-negative);
  color: white;
}

.cookie-consent .customize {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.cookie-settings {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

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

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

.cookie-settings h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.cookie-settings .cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-settings .category-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-settings .category-header label {
  margin-left: 10px;
  font-weight: 500;
}

.cookie-settings .category-description {
  margin-left: 30px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.cookie-settings .settings-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 1.5rem;
}

.cookie-settings .settings-btn {
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  border: none;
}

.cookie-settings .save-preferences {
  background-color: var(--secondary);
  color: white;
}

.cookie-settings .cancel {
  background-color: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}


@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .stat-card {
    margin-bottom: 20px;
  }
  
  .step-card {
    margin-bottom: 40px;
  }
  
  .case-card {
    margin-bottom: 20px;
  }
  
  .data-table {
    overflow-x: auto;
    display: block;
  }
  
  .contact-form {
    padding: 20px;
  }
}


.text-positive {
  color: var(--accent-positive);
}

.text-negative {
  color: var(--accent-negative);
}

.text-primary {
  color: var(--primary);
}

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

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

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

.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  background-color: var(--cta);
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: darken(var(--cta), 10%);
  color: white;
  text-decoration: none;
}

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

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

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

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


.iti {
  width: 100%;
}