
:root {
  --primary-blue: #2c7ab8;
  --primary-white: #f7f9fc;
  --primary-navy: #1a4971;
  --secondary-teal: #4fb3bf;
  --secondary-lavender: #e2e6f0;
  --secondary-light-gray: #f0f2f5;
  --accent-orange: #e67e22;
  --accent-green: #27ae60;
  --accent-yellow: #f1c40f;
  --text-dark: #2c3e50;
  --text-medium: #5d6d7e;
  --text-light: #a3b1c6;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Libre Franklin', sans-serif;
  color: var(--text-dark);
  background-color: var(--primary-white);
  line-height: 1.6;
  font-weight: 300;
}

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

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(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.uk-container {
  padding: 0 20px;
}


.site-header {
  background-color: var(--primary-white);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 180px;
  height: auto;
}

.site-nav .uk-navbar-nav > li > a {
  color: var(--text-dark);
  font-weight: 500;
  text-transform: none;
  font-size: 1rem;
  min-height: 80px;
}

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

.uk-navbar-container:not(.uk-navbar-transparent) {
  background: var(--primary-white);
}

.contact-phone {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.contact-phone i {
  margin-right: 8px;
  color: var(--primary-blue);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--primary-white);
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-navy);
  color: var(--primary-white);
  text-decoration: none;
}


.hero-section {
  padding: 4rem 0;
  background-color: var(--secondary-light-gray);
}

.hero-content {
  max-width: 600px;
}

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


.featured-box {
  background-color: var(--primary-white);
  border: 1px solid var(--secondary-lavender);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.featured-box h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

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

.featured-box .btn-text {
  color: var(--primary-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.featured-box .btn-text i {
  margin-left: 5px;
  transition: var(--transition);
}

.featured-box .btn-text:hover i {
  transform: translateX(5px);
}


.callout-box {
  background-color: var(--secondary-lavender);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 8px 8px 0;
}

.callout-box h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}


.progress-container {
  margin-bottom: 3rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: var(--secondary-light-gray);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-title {
  font-weight: 500;
  color: var(--text-dark);
}

.progress-value {
  color: var(--primary-blue);
  font-weight: 700;
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--secondary-lavender);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary-white);
  border: 4px solid var(--primary-blue);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd)::after {
  right: -12px;
}

.timeline-item:nth-child(even)::after {
  left: -12px;
}

.timeline-content {
  padding: 1.5rem;
  background-color: var(--primary-white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.timeline-date {
  color: var(--primary-blue);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
    left: 19px;
  }
}


.contact-form {
  background-color: var(--primary-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

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

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

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

.form-control input,
.form-control textarea,
.form-control select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--secondary-lavender);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control input:focus,
.form-control textarea:focus,
.form-control select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(44, 122, 184, 0.1);
}

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

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

.btn-submit {
  background-color: var(--primary-blue);
  color: var(--primary-white);
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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


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

.site-footer h4 {
  color: var(--primary-white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.site-footer a {
  color: var(--secondary-lavender);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--primary-white);
}

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

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

.footer-contact {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  margin-top: 5px;
  color: var(--primary-blue);
}

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


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

.cookie-settings-btn {
  background-color: transparent;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.875rem;
  margin-right: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background-color: var(--secondary-lavender);
}

.cookie-accept-btn {
  background-color: var(--primary-blue);
  border: none;
  color: var(--primary-white);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.cookie-settings-trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-white);
  border: 1px solid var(--secondary-lavender);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
}

.cookie-settings-trigger:hover {
  background-color: var(--secondary-lavender);
}

.cookie-settings-trigger i {
  color: var(--primary-blue);
  font-size: 1.5rem;
}


.case-study {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--secondary-lavender);
}

.case-study:last-child {
  border-bottom: none;
}

.case-study-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.case-study-content h3 {
  margin-bottom: 1rem;
}

.case-study-meta {
  display: flex;
  margin-bottom: 1rem;
}

.case-study-meta-item {
  margin-right: 1.5rem;
  color: var(--text-medium);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.case-study-meta-item i {
  margin-right: 5px;
  color: var(--primary-blue);
}

.key-takeaway {
  background-color: var(--secondary-lavender);
  border-left: 4px solid var(--accent-green);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.key-takeaway h5 {
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}


.safety-checklist {
  list-style: none;
  padding: 0;
}

.safety-checklist li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--secondary-lavender);
  display: flex;
  align-items: flex-start;
}

.safety-checklist li:last-child {
  border-bottom: none;
}

.safety-checklist li i {
  color: var(--accent-green);
  margin-right: 10px;
  margin-top: 3px;
}


.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background-color: var(--secondary-light-gray);
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: var(--secondary-lavender);
}

.faq-answer {
  padding: 1rem;
  background-color: var(--primary-white);
  border: 1px solid var(--secondary-lavender);
  border-top: none;
  border-radius: 0 0 8px 8px;
}


.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: var(--text-medium);
  font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-medium);
}

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

.breadcrumb li:last-child {
  color: var(--text-dark);
  font-weight: 500;
}


.thank-you-container {
  text-align: center;
  padding: 5rem 0;
}

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


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

.legal-content h2 {
  margin-top: 2.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
}

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

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

.legal-updated {
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 2rem;
}


.culture-card {
  background-color: var(--primary-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  transition: var(--transition);
}

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

.culture-card-body {
  padding: 1.5rem;
}

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


.standard-card {
  background-color: var(--primary-white);
  border: 1px solid var(--secondary-lavender);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--box-shadow);
}

.standard-card h4 {
  border-bottom: 2px solid var(--secondary-lavender);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.standard-icon {
  background-color: var(--secondary-light-gray);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.standard-icon i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}


@media (max-width: 960px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .site-header .uk-navbar-right {
    display: none;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .featured-box {
    padding: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
  
  .timeline::after {
    left: 21px;
  }
  
  .timeline-item::after {
    left: 9px !important;
  }
}


.iti {
  width: 100%;
}