
:root {
  --color-primary: #1E4D8C;
  --color-secondary: #FF6B35;
  --color-accent: #3F9FDB;
  --color-bg: #F5F7FA;
  --color-text: #2D3748;
  --color-highlight: #E2F0FF;
  --color-error: #E53E3E;
  --color-success: #38A169;
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover, a:focus {
  color: var(--color-secondary);
  outline: none;
}

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

button, .btn {
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  background: var(--color-primary);
  color: white;
}

button:hover, .btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

button:focus, .btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 159, 219, 0.5);
}


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

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-6 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-6 { padding-left: 3rem; padding-right: 3rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

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

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

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

.contact-phone {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  font-weight: 500;
}

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

.nav {
  display: flex;
}

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

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

.nav-link {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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


.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  margin-top: 3rem;
}

.mobile-nav-item {
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 500;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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


.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  color: white;
  padding: 6rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero-cta {
  background-color: var(--color-secondary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  display: inline-block;
  box-shadow: var(--shadow-md);
}

.hero-cta:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}


.process-flow {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-highlight);
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  z-index: -1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--color-text);
  opacity: 0.9;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -1rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  margin: 1rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -2rem;
  width: 2rem;
  height: 2px;
  background-color: var(--color-secondary);
  z-index: 0;
}

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

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

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.step-description {
  font-size: 1rem;
  color: var(--color-text);
}


.courses {
  padding: 5rem 0;
  background-color: white;
}

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

.course-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.course-content {
  padding: 1.5rem;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.course-duration {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.course-duration i {
  margin-right: 0.5rem;
}

.course-description {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.course-format {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-top: auto;
}

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


.benefits {
  padding: 5rem 0;
  background-color: var(--color-highlight);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(150px, 150px);
}

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

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

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

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

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.benefit-description {
  font-size: 1rem;
  color: var(--color-text);
}


.program {
  padding: 5rem 0;
  background-color: white;
}

.program-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.program-image {
  flex: 1;
  min-width: 300px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.program-text {
  flex: 2;
  min-width: 300px;
}

.program-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.program-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.program-list {
  list-style: none;
}

.program-item {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.program-item::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}


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

.practice::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.05;
}

.practice-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.practice-text {
  flex: 2;
  min-width: 300px;
}

.practice-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.practice-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.practice-image {
  flex: 1;
  min-width: 300px;
}

.practice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}


.faq {
  padding: 5rem 0;
  background-color: white;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  padding-top: 1rem;
  display: none;
}

.faq-answer.active {
  display: block;
}


.contact-form-section {
  padding: 5rem 0;
  background-color: var(--color-highlight);
}

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

.form-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-align: center;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 77, 140, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

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

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

.form-check-label {
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-check-label a {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background-color: var(--color-accent);
}


.footer {
  background-color: var(--color-primary);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

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

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

.footer-about {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-link a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

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

.footer-contact i {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.footer-contact a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-bottom-link {
  margin-left: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-bottom-link:hover {
  opacity: 1;
  color: var(--color-secondary);
}


.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: white;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  z-index: 999;
  display: none;
}

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

.cookie-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookie-text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-button {
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.cookie-accept {
  background-color: var(--color-primary);
  color: white;
  border: none;
}

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

.cookie-decline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.cookie-decline:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

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

.cookie-customize:hover {
  background-color: var(--color-highlight);
}


.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

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

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

.cookie-settings-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cookie-settings-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-settings-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
}

.cookie-category {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

.cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .cookie-category-slider {
  background-color: var(--color-primary);
}

input:focus + .cookie-category-slider {
  box-shadow: 0 0 1px var(--color-primary);
}

input:checked + .cookie-category-slider:before {
  transform: translateX(24px);
}

.cookie-category-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.cookie-settings-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-settings-save {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

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

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

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.modal-body {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.modal-button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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


.article {
  padding: 5rem 0;
  background-color: white;
}

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

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

.article-date {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.article-intro {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--color-text);
  font-weight: 500;
}

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

.article-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  color: var(--color-primary);
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1.25rem;
  color: var(--color-primary);
}

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

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

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

.article-content img {
  max-width: 100%;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

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

.article-conclusion {
  font-weight: 500;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}


@media (max-width: 992px) {
  .hero-content {
    max-width: 80%;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
  }
  
  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1rem;
  }
  
  .contact-phone {
    display: none;
  }
  
  .nav-list {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero::before {
    width: 100%;
    background-image: linear-gradient(to top, rgba(30, 77, 140, 0.9), rgba(30, 77, 140, 0.7));
  }
  
  .hero-image {
    width: 100%;
    opacity: 0.2;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .program-content, .practice-content {
    flex-direction: column;
  }
  
  .program-image, .practice-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom-link {
    margin: 0 0.75rem;
  }
  
  .article-title {
    font-size: 2rem;
  }
}


.iti {
  width: 100%;
}


.thanks-section {
  padding: 6rem 0;
  background-color: white;
  text-align: center;
}

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

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

.thanks-message {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.thanks-button {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  display: inline-block;
  box-shadow: var(--shadow-md);
}

.thanks-button:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}


.team-section {
  padding: 5rem 0;
  background-color: white;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

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

.team-intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.team-role {
  background-color: var(--color-highlight);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-role:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.team-role-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.team-role-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-role-experience {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.team-contact {
  max-width: 600px;
  margin: 4rem auto 0;
  text-align: center;
  padding: 2rem;
  background-color: var(--color-highlight);
  border-radius: var(--border-radius);
}

.team-contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.team-contact-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.team-contact-item i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}


.what-we-teach {
  padding: 5rem 0;
  background-color: white;
}

.what-we-teach-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.what-we-teach-intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-align: center;
}

.what-we-teach-intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.modules {
  margin-bottom: 4rem;
}

.module {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.module:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

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

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

.module-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.module-goal {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.module-topics {
  margin-bottom: 1.5rem;
}

.module-topics-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.module-topics-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.module-topic {
  padding-left: 1.5rem;
  position: relative;
}

.module-topic::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

.module-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: var(--color-highlight);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.module-format, .module-duration {
  flex: 1;
  min-width: 200px;
}

.module-format-title, .module-duration-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.module-format-title i, .module-duration-title i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.module-format-text, .module-duration-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.methodology {
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.methodology-text {
  flex: 2;
  min-width: 300px;
}

.methodology-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.methodology-description {
  font-size: 1.1rem;
  line-height: 1.7;
}

.methodology-image {
  flex: 1;
  min-width: 300px;
}

.methodology-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.outcomes {
  background-color: var(--color-highlight);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.outcomes-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-primary);
  text-align: center;
}

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

.outcome {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.outcome:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.outcome-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.outcome-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.outcome-description {
  font-size: 1rem;
  line-height: 1.7;
}

.certification {
  margin-top: 4rem;
}

.certification-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.certification-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.certification-requirements {
  background-color: var(--color-highlight);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.certification-requirements-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.certification-requirements-list {
  list-style: none;
}

.certification-requirement {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.certification-requirement::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}


.apply {
  padding: 5rem 0;
  background-color: white;
}

.apply-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.apply-intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-align: center;
}

.apply-intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.apply-process {
  margin-bottom: 4rem;
}

.apply-process-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.apply-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.apply-step {
  display: flex;
  gap: 1.5rem;
}

.apply-step-number {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.apply-step-content {
  flex: 1;
}

.apply-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.apply-step-description {
  font-size: 1rem;
  line-height: 1.7;
}

.apply-cta {
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.apply-cta-item {
  flex: 1;
  min-width: 300px;
  background-color: var(--color-highlight);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.apply-cta-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.apply-cta-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.apply-cta-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.apply-cta-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.apply-cta-button {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  display: inline-block;
}

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

.apply-articles {
  margin-bottom: 4rem;
}

.apply-articles-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

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

.apply-article {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.apply-article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.apply-article-content {
  padding: 1.5rem;
}

.apply-article-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.apply-article-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.apply-article-link {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
}

.apply-article-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.apply-article-link:hover i {
  transform: translateX(3px);
}

.apply-documents {
  background-color: var(--color-highlight);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.apply-documents-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.apply-documents-list {
  list-style: none;
}

.apply-document {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.apply-document::before {
  content: '\f15c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}


.contacts {
  padding: 5rem 0;
  background-color: white;
}

.contacts-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

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

.contacts-intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.contact-card {
  background-color: var(--color-highlight);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

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

.contact-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.contact-text {
  font-size: 1rem;
  line-height: 1.7;
}

.contact-text a {
  color: var(--color-primary);
  font-weight: 500;
}

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

.contact-hours {
  margin-bottom: 4rem;
}

.contact-hours-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-align: center;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.hours-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  min-width: 250px;
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.hours-day {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.hours-time {
  font-size: 1rem;
}

.contact-map {
  margin-bottom: 4rem;
}

.contact-map-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-align: center;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-cta {
  text-align: center;
}

.contact-cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.contact-cta-button {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  display: inline-flex;
  align-items: center;
}

.contact-cta-button i {
  margin-right: 0.75rem;
}

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

.contact-cta-button.secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.contact-cta-button.secondary:hover {
  background-color: var(--color-highlight);
  color: var(--color-primary);
}


.policy {
  padding: 5rem 0;
  background-color: white;
}

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

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

.policy-date {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.policy-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

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

.policy-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.policy-section ul, .policy-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.policy-contact {
  background-color: var(--color-highlight);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 3rem;
}

.policy-contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.policy-contact-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.policy-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.policy-contact-item i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--color-primary);
}