
:root {
  --primary: #6246EA;
  --secondary: #E45858;
  --background: #FFFFFE;
  --card-background: #F2F4F8;
  --dark-text: #2B2C34;
  --light-text: #94A1B2;
  --light-shadow: rgba(255, 255, 255, 0.8);
  --dark-shadow: rgba(174, 174, 192, 0.2);
  --shadow-size: 6px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

p, li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

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

.section {
  padding: 5rem 0;
}

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

.section-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  background-color: var(--primary);
  margin: 1rem auto 0;
}


.neumorph {
  border-radius: 16px;
  background: var(--card-background);
  box-shadow: 
    var(--shadow-size) var(--shadow-size) calc(var(--shadow-size) * 2) var(--dark-shadow),
    calc(var(--shadow-size) * -1) calc(var(--shadow-size) * -1) calc(var(--shadow-size) * 2) var(--light-shadow);
  transition: var(--transition);
}

.neumorph:hover {
  box-shadow: 
    calc(var(--shadow-size) * 0.7) calc(var(--shadow-size) * 0.7) calc(var(--shadow-size) * 1.4) var(--dark-shadow),
    calc(var(--shadow-size) * -0.7) calc(var(--shadow-size) * -0.7) calc(var(--shadow-size) * 1.4) var(--light-shadow);
  transform: translateY(-2px);
}

.neumorph-inset {
  border-radius: 16px;
  background: var(--card-background);
  box-shadow: 
    inset var(--shadow-size) var(--shadow-size) calc(var(--shadow-size) * 2) var(--dark-shadow),
    inset calc(var(--shadow-size) * -1) calc(var(--shadow-size) * -1) calc(var(--shadow-size) * 2) var(--light-shadow);
}


.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #5438D5;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(98, 70, 234, 0.2);
}

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

.btn-secondary:hover {
  background-color: #D74747;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(228, 88, 88, 0.2);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}


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

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
}

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

.logo {
  height: 50px;
  width: 200px;
}

.logo svg {
  height: 100%;
}

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

.nav {
  display: flex;
}

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

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

.nav-link {
  color: var(--dark-text);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

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

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

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  padding: 1rem;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.5rem 0;
  display: block;
  color: var(--dark-text);
}

.dropdown-item:hover {
  color: var(--primary);
}


.hero {
  padding-top: 10rem;
  position: relative;
  overflow: hidden;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--light-text);
}

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

.hero-image-container {
  margin-top: 3rem;
  text-align: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translateZ(-1px) scale(1.5);
}

.parallax-content {
  position: relative;
  transform: translateZ(0);
}


.features {
  position: relative;
}

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

.feature-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--card-background);
  z-index: -1;
  box-shadow: 
    3px 3px 6px var(--dark-shadow),
    -3px -3px 6px var(--light-shadow);
}

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


.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-content {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}


.courses {
  position: relative;
}

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

.course-card {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.course-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

.course-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--light-text);
}

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

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

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

.course-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}


.benefits {
  position: relative;
}

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

.benefit-item {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

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


.methodology {
  position: relative;
}

.methodology-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.methodology-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.methodology-image img {
  width: 100%;
  height: auto;
  display: block;
}

.methodology-steps {
  list-style: none;
}

.methodology-step {
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}

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


.schedule {
  position: relative;
}

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

.schedule-card {
  padding: 2rem;
  height: 100%;
}

.schedule-title {
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.schedule-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  font-weight: 700;
  color: var(--dark-text);
  display: block;
}


.faq {
  position: relative;
}

.accordion {
  margin-top: 2rem;
}

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

.accordion-header {
  padding: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header.active {
  border-radius: 10px 10px 0 0;
  box-shadow: none;
}

.accordion-title {
  margin: 0;
  font-size: 1.3rem;
}

.accordion-icon {
  font-size: 1.2rem;
  transition: var(--transition);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 0 0 10px 10px;
}

.accordion-content.active {
  padding: 1.5rem;
  max-height: 500px;
}

.accordion-body {
  padding: 1rem 0;
}


.contact {
  position: relative;
}

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

.contact-info {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--card-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.3rem;
  color: var(--primary);
  box-shadow: 
    3px 3px 6px var(--dark-shadow),
    -3px -3px 6px var(--light-shadow);
}

.contact-details h4 {
  margin-bottom: 0.3rem;
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
}


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

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

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

.form-control {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  background: var(--card-background);
  box-shadow: 
    inset 3px 3px 6px var(--dark-shadow),
    inset -3px -3px 6px var(--light-shadow);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  box-shadow: 
    inset 4px 4px 8px var(--dark-shadow),
    inset -4px -4px 8px var(--light-shadow);
}

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

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

.form-submit {
  margin-top: 1rem;
}

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


.footer {
  background-color: #f8f9fa;
  padding: 4rem 0 1rem;
}

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

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

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-background);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  transition: var(--transition);
  box-shadow: 
    3px 3px 6px var(--dark-shadow),
    -3px -3px 6px var(--light-shadow);
}

.social-link:hover {
  transform: translateY(-3px);
  color: var(--primary);
}

.footer-title {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

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

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

.footer-link a {
  color: var(--dark-text);
}

.footer-link a:hover {
  color: var(--primary);
}

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

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.cookie-settings-btn {
  margin-top: 1rem;
  display: inline-block;
  color: var(--primary);
  cursor: pointer;
}


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

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

.modal-content {
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  position: relative;
  transform: translateY(-50px);
  transition: var(--transition);
}

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

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

.modal-title {
  margin-bottom: 0.5rem;
}

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

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

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


.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: bottom 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-text {
  flex: 1;
  margin-right: 2rem;
}

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


.cookie-settings-modal .cookie-categories {
  margin-bottom: 2rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

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

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

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

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

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

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

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

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


.page-header {
  padding: 8rem 0 4rem;
  background-color: var(--card-background);
  position: relative;
  overflow: hidden;
}

.page-title {
  margin-bottom: 1.5rem;
}

.page-description {
  max-width: 700px;
  margin: 0 auto;
}


.policy-date {
  text-align: right;
  margin: 1rem 0 3rem;
  color: var(--light-text);
}

.policy-content h2 {
  margin-top: 3rem;
}

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

.policy-content ul, 
.policy-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}


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

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

.thank-you-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}


.form-select {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  background: var(--card-background);
  box-shadow: 
    inset 3px 3px 6px var(--dark-shadow),
    inset -3px -3px 6px var(--light-shadow);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
}

.form-select:focus {
  outline: none;
  box-shadow: 
    inset 4px 4px 8px var(--dark-shadow),
    inset -4px -4px 8px var(--light-shadow);
}


.custom-checkbox {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border-radius: 6px;
  background-color: var(--card-background);
  box-shadow: 
    3px 3px 6px var(--dark-shadow),
    -3px -3px 6px var(--light-shadow);
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: var(--card-background);
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--card-background);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid var(--primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding-top: 8rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 4rem 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-item {
    margin: 0 0 1.5rem;
  }
  
  .nav-dropdown {
    position: relative;
    top: auto;
    left: auto;
    background: none;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  
  .nav-item:hover .nav-dropdown {
    display: block;
  }
  
  .dropdown-item {
    padding: 0.7rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding-top: 7rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .about-grid, 
  .methodology-content {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .hero {
    padding-top: 6rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .features-grid,
  .courses-grid,
  .schedule-content {
    grid-template-columns: 1fr;
  }
  
  .accordion-title {
    font-size: 1.1rem;
  }
  
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
}