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


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

:root {
  --color-dark-blue: #1A365D;
  --color-teal: #0891B2;
  --color-purple: #6D28D9;
  --color-bright-teal: #06B6D4;
  --color-light-purple: #8B5CF6;
  --color-white: #FFFFFF;
  --color-light-gray: #F3F4F6;
  --color-medium-gray: #9CA3AF;
  --color-dark-gray: #374151;
  --gradient-blue-purple: linear-gradient(135deg, #1A365D 0%, #6D28D9 100%);
  --gradient-teal-blue: linear-gradient(135deg, #0891B2 0%, #1E40AF 100%);
  --transition-normal: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark-gray);
  background-color: var(--color-white);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

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

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

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


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


.btn {
  display: inline-block;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-teal-blue);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--gradient-blue-purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
  text-decoration: none;
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-teal);
  border: 1px solid var(--color-teal);
}

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-light-gray);
  color: var(--color-dark-blue);
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}


.header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--color-dark-gray);
  font-weight: 500;
  transition: var(--transition-normal);
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
  color: var(--color-teal);
  text-decoration: none;
}

.cta-button {
  margin-left: 2rem;
}

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


.hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background: var(--gradient-blue-purple);
  color: var(--color-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 54, 93, 0.7);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color-light-gray);
}


.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-teal-blue);
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--color-dark-gray);
}

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


.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: var(--gradient-teal-blue);
  color: var(--color-white);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}


.courses {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.course-card {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-content {
  padding: 1.5rem;
}

.course-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-medium-gray);
}

.course-description {
  margin-bottom: 1.5rem;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light-gray);
}

.course-price {
  font-weight: 700;
  color: var(--color-dark-blue);
}


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

.format-item {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.format-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.format-title i {
  margin-right: 0.75rem;
  color: var(--color-teal);
}

.format-description {
  color: var(--color-dark-gray);
}


.modules {
  counter-reset: module-counter;
}

.module-item {
  position: relative;
  padding: 2rem 2rem 2rem 4rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.module-item::before {
  counter-increment: module-counter;
  content: counter(module-counter);
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  width: 40px;
  height: 40px;
  background: var(--gradient-teal-blue);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.module-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}


.cases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.case-card {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.case-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-dark-blue);
}

.case-description {
  margin-bottom: 1.5rem;
}

.case-result {
  padding-top: 1rem;
  border-top: 1px solid var(--color-light-gray);
  font-weight: 500;
}


.instructors {
  text-align: center;
}

.instructor-description {
  max-width: 800px;
  margin: 0 auto 2rem;
}


.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  background-color: var(--color-white);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: var(--transition-normal);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: var(--color-light-gray);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

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


.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-medium-gray);
  border-radius: 0.375rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

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

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

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

.form-actions {
  display: flex;
  justify-content: flex-end;
}


.iti {
  width: 100%;
}


.map-container {
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-teal-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}


.footer {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  padding: 3rem 0 1.5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-contact p i {
  margin-right: 0.75rem;
  color: var(--color-bright-teal);
}

.footer-links h4 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: var(--color-light-gray);
  transition: var(--transition-normal);
}

.footer-links a:hover, .footer-links a:focus {
  color: var(--color-bright-teal);
  text-decoration: none;
}

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

.footer-bottom a {
  color: var(--color-light-gray);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-content {
  flex: 1;
  margin-right: 1.5rem;
}

.cookie-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cookie-text {
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-settings-button {
  margin-right: 0.75rem;
}

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

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

.cookie-modal-content {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

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

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

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

.cookie-options {
  margin-bottom: 1.5rem;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.375rem;
  background-color: var(--color-light-gray);
  margin-bottom: 1rem;
}

.cookie-option-input {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.cookie-option-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.cookie-option-content p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


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

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

.modal-content {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

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

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

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

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
}


.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

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

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

.article-meta {
  color: var(--color-medium-gray);
  font-size: 0.875rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

.article-content img {
  margin: 2rem auto;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-teal);
  background-color: var(--color-light-gray);
  font-style: italic;
}


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

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--gradient-teal-blue);
  color: var(--color-white);
  font-size: 2.5rem;
}

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

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


.methodology-diagram {
  text-align: center;
  margin: 3rem 0;
}

.methodology-diagram img {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
}


.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

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

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

.policy-date {
  color: var(--color-medium-gray);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section p, .policy-section ul {
  margin-bottom: 1rem;
}


@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .cta-button {
    margin-left: 1rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .nav {
    width: 100%;
    flex-direction: column;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-item {
    margin: 0;
    margin-bottom: 0.5rem;
  }
  
  .cta-button {
    margin: 1rem 0 0;
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .nav {
    display: none;
  }
  
  .nav.active {
    display: flex;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .features, .courses, .format-grid, .cases {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .article-title {
    font-size: 2rem;
  }
}