
:root {
  --primary: #2D3142;
  --secondary: #0F7173;
  --accent: #EF8354;
  --light: #F7F9FB;
  --dark: #1A1E2C;
  --light-gray: #E8ECEF;
  --medium-gray: #BFC0C0;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}

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

body {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--light);
  overflow-x: hidden;
}

.page-header {
  padding-top: 100px;
}

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

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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: var(--transition);
}

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

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

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

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 8rem 0;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--light);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 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: none;
  margin: 0;
  padding: 0;
}

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

.nav-link {
  font-weight: 500;
  color: var(--primary);
  position: relative;
}

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

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

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

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

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

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

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--secondary);
  color: var(--light);
}

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

.btn-accent:hover, .btn-accent:focus {
  background-color: var(--dark);
  color: var(--light);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}


.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background-color: var(--light);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 49, 66, 0.05) 0%, rgba(15, 113, 115, 0.1) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-benefits {
  margin-bottom: 2.5rem;
  list-style: none;
  padding: 0;
}

.hero-benefits li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

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

.hero-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


.form-section {
  background-color: var(--light-gray);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 3rem;
}

.form-title {
  margin-bottom: 2rem;
}

.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(--medium-gray);
  border-radius: 4px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(15, 113, 115, 0.2);
}

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

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

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

.form-button {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
}


.features {
  padding: 5rem 0;
}

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

.feature-card {
  background-color: var(--light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

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


.programs {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

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

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

.program-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.program-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-title {
  margin-bottom: 1rem;
}

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

.program-meta-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  font-size: 0.875rem;
}

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

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

.program-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.process {
  padding: 5rem 0;
}

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

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

.process-step {
  position: relative;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--light);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.step-number {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 1;
}

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


.results {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

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

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

.result-card {
  background-color: var(--light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

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

.result-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.result-progress {
  width: 100%;
  height: 6px;
  background-color: var(--light-gray);
  border-radius: 3px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.result-progress-bar {
  height: 100%;
  background-color: var(--accent);
  border-radius: 3px;
}


.faq {
  padding: 5rem 0;
}

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

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

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

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

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary);
  transition: var(--transition);
}

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

.faq-item.active .faq-question::after {
  content: '\f077';
  color: var(--light);
}

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

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


.cta {
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--light);
  text-align: center;
}

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

.cta-title {
  color: var(--light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

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


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

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

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

.footer-description {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.footer-title {
  color: var(--light);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

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

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

.footer-link a:hover {
  opacity: 1;
  color: var(--accent);
  text-decoration: none;
}

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

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--accent);
  font-size: 1.25rem;
}

.footer-contact-text {
  opacity: 0.8;
}

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

.footer-copyright {
  opacity: 0.8;
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--accent);
  color: var(--light);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--light);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-consent-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-title {
  color: var(--light);
  margin-bottom: 0.5rem;
}

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

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

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

.cookie-settings-content {
  background-color: var(--light);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-settings-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-settings-title {
  margin-bottom: 0;
}

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

.cookie-settings-body {
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 2rem;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

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

.cookie-category-title {
  margin-bottom: 0;
}

.cookie-category-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

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

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

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

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

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

.cookie-settings-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
}


.iti {
  width: 100%;
}


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

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

.modal-content {
  background-color: var(--light);
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  margin-bottom: 0;
}

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

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


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

.course-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.course-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  margin-bottom: 1rem;
}

.course-meta {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.course-meta-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

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

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

.course-footer {
  margin-top: auto;
}


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

.contact-info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--light-gray);
  color: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-content {
  flex-grow: 1;
}

.contact-info-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
  margin-bottom: 3rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


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

.thank-you-icon {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

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

.thank-you-description {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}


.legal {
  padding: 5rem 0;
}

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

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

.legal-section {
  margin-bottom: 3rem;
}

.legal-section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}


@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-sm {
    padding: 2.5rem 0;
  }
  
  .section-lg {
    padding: 6rem 0;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: none;
  }
  
  .programs-grid, .course-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-sm {
    padding: 2rem 0;
  }
  
  .section-lg {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--light);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-item {
    margin: 0 0 1.5rem;
  }
  
  .nav-link {
    display: block;
    font-size: 1.25rem;
  }
  
  .nav-cta {
    margin: 1.5rem 0 0;
  }
  
  .feature-card, .program-card, .course-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .programs-grid, .course-list {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1.125rem;
  }
  
  .cookie-consent-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .form-section {
    padding: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}


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

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

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

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

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

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

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

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

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

.mt-0 {
  margin-top: 0;
}

.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;
}

.mb-0 {
  margin-bottom: 0;
}

.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;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}