:root {
  --primary: #6C63FF;
  --primary-dark: #564FC9;
  --secondary: #FF6584;
  --dark: #2D3748;
  --light: #F7FAFC;
  --gray: #E2E8F0;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 5px 20px rgba(108, 99, 255, 0.3);
}

/* Базовые стили */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.program-page {
  transition: opacity 0.6s ease;
}

.page-loaded .program-page {
  opacity: 1;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
}

.section-padding {
  padding: 6rem 0;
  position: relative;
}

/* Анимации */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Шапка */
.header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
  animation: fadeIn 1s ease both;
}

.navbar-brand:hover {
  color: var(--primary);
}

.brand-wrapper {
  display: flex;
  align-items: center;
}

.brand-name {
  margin-left: 0.75rem;
  font-size: 1.25rem;
}

.nav-link {
  font-weight: 600;
  color: var(--dark);
  padding: 0.5rem 1rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.menu-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

#menuCloseBtn {
  font-size: 1.5rem;
  padding: 0.5rem;
}

.navbar-extra .btn {
  padding: 0.5rem 1.25rem;
}

#theme-toggle {
  border-width: 2px;
}

/* Герой секция */
.hero-program {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 12rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: gradientShift 12s ease infinite;
  background-size: 200% 200%;
}

.hero-program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/dots-pattern.png') center/cover;
  opacity: 0.1;
}

.hero-program::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 101, 132, 0.2) 0%, transparent 40%);
  animation: pulse 12s infinite alternate;
}

.hero-program h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: slideUp 1s ease both;
}

.hero-program h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.hero-program .lead {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 300;
  animation: slideUp 1s ease 0.2s both;
}

/* Карточки о программе */
.about-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.about-card i {
  font-size: 2.5rem;
  color: var(--primary);
  background: rgba(108, 99, 255, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

/* Направления программы */
.program-directions {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
  transition: background-position 0.5s ease-out;
}

.direction-card {
  display: flex;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform;
}

.direction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transition: var(--transition);
}

.direction-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.direction-card:hover::after {
  opacity: 1;
}

.direction-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.direction-card:hover::before {
  width: 8px;
  background: var(--secondary);
}

.direction-icon {
  flex: 0 0 80px;
  height: 80px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-right: 2rem;
  transition: var(--transition);
}

.direction-card:hover .direction-icon {
  background: rgba(255, 101, 132, 0.1);
  color: var(--secondary);
}

.direction-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 700;
}

.direction-content p {
  color: #64748B;
  line-height: 1.7;
}

.direction-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.direction-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.direction-features i {
  color: var(--secondary);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.direction-features span {
  color: var(--dark);
}

/* Проект "Моє хобі" */
.hobby-project {
  background-color: white;
  position: relative;
  transition: background-position 0.5s ease-out;
}

.hobby-project h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.hobby-project h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.hobby-project h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.hobby-project p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A5568;
}

.hobby-image {
  position: relative;
  perspective: 1000px;
}

.hobby-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.hobby-image:hover img {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hobby-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: var(--primary-dark);
  animation: pulse 2s infinite;
  z-index: 1;
}

.hobby-badge i {
  color: var(--secondary);
  margin-right: 0.3rem;
}

/* Секция "Присоединиться" */
.join-program {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4F46E5 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  transition: background-position 0.5s ease-out;
}

.join-program::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('assets/images/circle-pattern.svg') center/contain;
  opacity: 0.1;
  animation: rotate 60s linear infinite;
}

.join-program::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.3) 0%, rgba(255, 101, 132, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.join-program:hover::after {
  opacity: 1;
}

.join-program h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: white;
}

.join-program h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.join-program .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
}

.step-card:hover {
  transform: translateY(-10px) !important;
  background: rgba(255, 255, 255, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: white;
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.step-card:hover .step-number {
  transform: rotate(15deg) scale(1.1);
  box-shadow: var(--shadow-primary);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: white;
}

.step-card p {
  opacity: 0.9;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Кнопки */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

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

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-light {
  background: white;
  color: var(--primary-dark);
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: white;
  color: var(--primary-dark);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: var(--transition);
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Контактная форма */
.contact-section {
  position: relative;
}

.contact-form-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(108, 99, 255, 0.05),
    rgba(255, 101, 132, 0.05),
    rgba(108, 99, 255, 0.05)
  );
  animation: gradientRotate 15s infinite linear;
  z-index: 0;
}

.contact-form {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 16px;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 8px;
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
}

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

.form-check-label {
  color: var(--dark);
}

/* Контактные карточки */
.contact-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  opacity: 0;
  transform: translateY(30px);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.contact-icon {
  flex: 0 0 60px;
  height: 60px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1.5rem;
}

.contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

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

.contact-details a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Подвал */
.footer {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/dots-pattern.png') center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.footer-main {
  padding: 4rem 0;
}

.footer-widget {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

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

.contact-list i {
  margin-right: 1rem;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.contact-list a:hover {
  color: white;
  text-decoration: underline;
}

.subscribe-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
}

.subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-form .btn {
  background: var(--secondary);
  color: white;
  border: none;
}

.subscribe-form .btn:hover {
  background: #e04d6a;
}

.social-media {
  margin-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: white;
}

.list-inline {
  margin-bottom: 0;
}

.list-inline-item:not(:last-child) {
  margin-right: 1rem;
}

/* Кнопка "Наверх" */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: var(--shadow-primary);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* Адаптивные стили */
@media (max-width: 992px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .navbar-collapse {
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
  }
  
  .nav-link {
    padding: 0.75rem 0;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .navbar-extra {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray);
  }
  
  .direction-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .direction-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .hobby-project .row {
    flex-direction: column-reverse;
  }
  
  .hobby-image img {
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-program {
    padding: 8rem 0 6rem;
  }
  
  .step-card {
    margin-bottom: 1.5rem;
  }
  
  .join-program {
    padding: 4rem 0;
  }
  
  .footer-main {
    padding: 3rem 0;
  }
  
  .footer-widget {
    margin-bottom: 2.5rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }
  
  .hobby-badge {
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.program-features {
  list-style-type: none;
  padding-left: 0;
  columns: 2;
  column-gap: 2rem;
}

.program-features li {
  margin-bottom: 0.75rem;
  break-inside: avoid;
}

@media (max-width: 768px) {
  .program-features {
    columns: 1;
  }
}