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

:root {
  --primary: #2C3E50;
  --secondary: #3498DB;
  --accent: #E67E22;
  --bg-light: #F8F9FA;
  --bg-dark: #1A2530;
  --text-primary: #333333;
  --text-secondary: #6C757D;
  --success: #2ECC71;
  --warning: #F39C12;
  --error: #E74C3C;
  --border: #DEE2E6;
  --transition-standard: all 0.3s ease;
}

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


.iti {
  width: 100%;
}


.od-ghost-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 2px solid currentColor;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition-standard);
  cursor: pointer;
}

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

.od-ghost-primary {
  color: var(--primary);
}

.od-ghost-primary:hover, 
.od-ghost-primary:focus-visible {
  background-color: var(--primary);
  color: white;
}

.od-ghost-secondary {
  color: var(--secondary);
}

.od-ghost-secondary:hover, 
.od-ghost-secondary:focus-visible {
  background-color: var(--secondary);
  color: white;
}

.od-ghost-accent {
  color: var(--accent);
}

.od-ghost-accent:hover, 
.od-ghost-accent:focus-visible {
  background-color: var(--accent);
  color: white;
}

.od-ghost-light {
  color: white;
  border-color: white;
}

.od-ghost-light:hover, 
.od-ghost-light:focus-visible {
  background-color: white;
  color: var(--primary);
}


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

.od-nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-standard);
}

.od-nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-standard);
  transform: translateX(-50%);
}

.od-nav-link:hover, 
.od-nav-link:focus-visible {
  color: var(--secondary);
}

.od-nav-link:hover:after, 
.od-nav-link:focus-visible:after,
.od-nav-link.active:after {
  width: 80%;
}

.od-nav-link.active {
  color: var(--secondary);
}

.od-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}


.od-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
  overflow: hidden;
}

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

.od-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}


.od-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.od-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background-color: white;
  transition: var(--transition-standard);
  overflow: hidden;
}

.od-service-card:hover,
.od-service-card:focus-within {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.od-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--secondary);
  font-size: 1.75rem;
}

.od-service-title {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.od-service-benefits {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.od-service-benefits li {
  margin-bottom: 0.5rem;
  position: relative;
}

.od-service-benefits li:before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: -1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent);
  border-radius: 50%;
}


.od-workflow {
  position: relative;
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.od-workflow-step {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.od-workflow-step:last-child {
  margin-bottom: 0;
}

.od-workflow-step:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 2rem;
  background-color: var(--border);
  transform: translateX(-50%);
}

.od-workflow-step:last-child:after {
  display: none;
}

.od-workflow-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.od-workflow-title .od-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-size: 0.875rem;
}

.od-workflow-meta {
  display: flex;
  margin-top: 1.5rem;
  flex-direction: column;
}

.od-workflow-meta-item {
  margin-right: 2rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.od-workflow-meta-item strong {
  color: var(--primary);
}

.od-progress-container {
  height: 5px;
  margin-top: 1rem;
  background-color: var(--border);
  border-radius: 2.5px;
  overflow: hidden;
}


.od-benefits {
  padding: 5rem 0;
}

.od-benefit-item {
  display: flex;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--bg-light);
  transition: var(--transition-standard);
}

.od-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.od-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-right: 1.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-size: 1.5rem;
}

.od-benefit-content {
  flex: 1;
}

.od-benefit-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--primary);
}


.od-faq {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.od-faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
}

.od-faq-question {
  position: relative;
  padding: 1.5rem;
  padding-right: 3rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-standard);
}

.od-faq-question:after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: var(--transition-standard);
}

.od-faq-item.active .od-faq-question {
  color: var(--secondary);
}

.od-faq-item.active .od-faq-question:after {
  transform: translateY(-50%) rotate(180deg);
}

.od-faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: var(--transition-standard);
}

.od-faq-item.active .od-faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}


.od-contact-form {
  padding: 2rem;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.od-form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  background-color: white;
  transition: var(--transition-standard);
}

.od-form-control:focus {
  border-color: var(--secondary);
  outline: none;
}

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

.od-form-check-input {
  margin-top: 0.3rem;
  margin-right: 0.5rem;
}

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


.od-footer {
  padding: 5rem 0 2rem;
  background-color: var(--bg-dark);
  color: white;
}

.od-footer-heading {
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: white;
}

.od-footer-link {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-standard);
}

.od-footer-link:hover,
.od-footer-link:focus-visible {
  color: white;
}

.od-footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.od-footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  margin-right: 1rem;
  color: var(--secondary);
}

.od-footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}


.od-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.od-cookie-banner.active {
  transform: translateY(0);
}

.od-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-standard);
}

.od-cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.od-cookie-modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition-standard);
}

.od-cookie-modal.active .od-cookie-modal-content {
  transform: translateY(0);
}

.od-cookie-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-standard);
}

.od-cookie-close:hover {
  color: var(--error);
}

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

.od-cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.od-cookie-category-title {
  font-weight: 700;
  color: var(--primary);
}

.od-cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

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

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

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

.od-cookie-toggle input:focus + .od-cookie-toggle-slider {
  box-shadow: 0 0 1px var(--success);
}

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

.od-cookie-toggle input[disabled] + .od-cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}


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

.od-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.od-breadcrumbs-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-standard);
}

.od-breadcrumbs-link:hover,
.od-breadcrumbs-link:focus-visible {
  color: var(--secondary);
}

.od-breadcrumbs-item:last-child .od-breadcrumbs-link {
  color: var(--primary);
  font-weight: 500;
}


.od-course-module {
  margin-bottom: 2rem;
  padding: 2rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background-color: white;
  transition: var(--transition-standard);
}

.od-course-module:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.od-course-module-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.od-module-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: var(--secondary);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.od-module-title {
  font-weight: 700;
  color: var(--primary);
}

.od-module-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.od-module-meta {
  display: flex;
  flex-wrap: wrap;
}

.od-module-meta-item {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.od-module-meta-icon {
  margin-right: 0.5rem;
  color: var(--secondary);
}


.od-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.od-thanks-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  border-radius: 50%;
  background-color: var(--success);
  color: white;
  font-size: 3rem;
}


.od-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-standard);
}

.od-modal.active {
  opacity: 1;
  visibility: visible;
}

.od-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: var(--transition-standard);
}

.od-modal.active .od-modal-content {
  transform: translateY(0);
}

.od-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-standard);
}

.od-modal-close:hover {
  color: var(--error);
}


@media (max-width: 1024px) {
  .od-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .od-service-grid {
    grid-template-columns: 1fr;
  }
  
  .od-mobile-menu-toggle {
    display: block;
  }
  
  .od-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    transform: translateX(-100%);
    transition: var(--transition-standard);
    z-index: 100;
  }
  
  .od-nav-menu.active {
    transform: translateX(0);
  }
  
  .od-nav-link {
    margin: 0.5rem 0;
    font-size: 1.25rem;
  }
  
  .od-mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
  }
  
  .od-hero-bg {
    width: 100%;
    opacity: 0.2;
  }
  
  .od-benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .od-benefit-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .od-workflow-meta {
    flex-direction: column;
  }
  
  .od-workflow-meta-item {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.od-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.od-fade-in-1 {
  animation-delay: 0.1s;
}

.od-fade-in-2 {
  animation-delay: 0.2s;
}

.od-fade-in-3 {
  animation-delay: 0.3s;
}

.od-fade-in-4 {
  animation-delay: 0.4s;
}

.od-fade-in-5 {
  animation-delay: 0.5s;
}


h1, h2, h3 {
  text-wrap: balance;
}