/* ===== BACKGROUND CODE (Hidden Behind Screen) ===== */
#code-background {
  position: fixed;
  top: 10rem;
  left: 2rem;
  width: auto;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  padding: 0;
  overflow: hidden;
  max-width: 50%;
  max-height: 50%;
}

.code-display {
  position: relative;
  width: auto;
  height: auto;
}

#code-text {
  color: #2d5a3d;
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  line-height: 1.4;
  white-space: pre;
  text-align: left;
  transition: opacity 0.5s ease;
  padding: 0;
  margin: 0;
}

/* Курсор мигающий */
.cursor {
  display: inline-block;
  width: 0.8rem;
  height: 2rem;
  background-color: #547c55;
  margin-left: 0.2rem;
  animation: blink 1s infinite;
  vertical-align: middle;
  opacity: 0.7;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Остальной контент поверх фона */
header,
.main-content,
footer {
  position: relative;
  z-index: 1;
}

/* Основная часть */
/* Основной контент */
.main-content {
  flex: 1;
  margin-top: 1rem;
  padding: 5em 5rem;
}

/* Герой секция */
.hero-section {
  margin-top: 4rem; /* отступ сверху */
  max-width: 50rem; /* ширина как у текста */
}

.hero-container {
  display: block;
  gap: 6rem;
  align-items: center;
}

/* Левый блок с текстом */
.hero-text {
  flex: 1;
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--text-color);
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.5rem;
  color: var(--text-color-light);
  line-height: 1.4;
  margin-bottom: 3rem;
  max-width: 60rem;
}

/* Кнопка скачать IDE */
.download-btn {
  background-color: #a0c7cf;
  color: #151515;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.download-btn:hover {
  background-color: #6b8ea3;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.5rem rgba(69, 99, 119, 0.4);
}

/* Блок с плитками */
.stats-section {
  flex: 0 0 40rem;
  padding: 3.5rem 0rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  background-color: #3a3a3a;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 1;
  size: 2rem;
  pointer-events: none;
}

.stat-icon-in {
  transform: scale(1.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.1;
  pointer-events: none;
}

.stat-label {
  font-size: 1.5rem;
  color: var(--text-color-light);
  font-weight: 400;
  pointer-events: none;
}

/* Большой логотип справа */
.large-logo {
  position: fixed;
  top: 38%;
  right: -5%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  width: 60rem; /* Большой размер */
  height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* opacity: 0.80; */
  transition: opacity 0.4s ease;
}

/* Состояния с разной прозрачностью */
.large-logo.scroll-25 {
  opacity: 0.4;
}
.large-logo.scroll-50 {
  opacity: 0.2;
}

.large-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Для SVG можно менять цвет через фильтры */
  /* filter: opacity(0.2); */
}

/* Анимация плавающего эффекта */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2rem) rotate(2deg);
  }
}

/* Делаем hero-section относительной, чтобы логотип позиционировался внутри него */
.hero-section {
  position: relative;
  margin-top: 4rem;
  max-width: 50rem;
  overflow: hidden; /* Обрезаем выходящую часть */
}

/* Поднимаем основной контент над логотипом */
.hero-container {
  display: block;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Секция "Для кого RaximCodex" */
.for-whom-section {
  padding: 8rem 5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Сетка 2x2 */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3rem;
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}

/* Заголовочная ячейка (верхняя левая) */
.whom-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding-right: 3rem;
}

.whom-header h2 {
  font-size: 3.5rem;
  color: #ffffed;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.header-subtitle {
  font-size: 2rem;
  color: #e0e0e0;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.8;
}

/* Общие стили для карточек */
.whom-card {
  background-color: #637a7f; /* Заданный цвет для всех карточек */
  border-radius: 1.2rem;
  padding: 2rem 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
}

.whom-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
}

.card-content {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-color);
  pointer-events: none;
  font-weight: 400;
}

/* Заголовки в карточках */
.whom-card h3 {
  font-size: 3.4rem;
  color: #ffffed;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: left;
}

/* Списки с галочками */
.whom-list {
  list-style: none;
  text-align: left;
}

.whom-list li {
  font-size: 1.7rem;
  color: #e0e0e0;
  line-height: 1.4;
  margin-bottom: 1rem;
  padding-left: 3.5rem;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.check-icon {
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: #ffffed;
  font-size: 1.8rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Декоративные элементы для карточек */
.whom-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whom-card:hover::before {
  opacity: 0.5;
}

/* Границы для табличного вида (опционально) */
.for-whom-grid {
  position: relative;
}

/* Секция "Ключевые особенности" */
.features-section {
  padding: 6rem 5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-container {
  max-width: 140rem;
  width: 100%;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-size: 4.5rem;
  color: #ffffed;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.features-subtitle {
  font-size: 1.5rem;
  color: #e0e0e0;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.8;
}

/* Сетка карточек */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* Карточки особенностей */
.feature-card {
  border-radius: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-card-1 {
  background-color: #3a3a3a;
}

.feature-card-2 {
  background-color: #637a7f;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  background-color: #444;
}

.feature-card-1:hover {
  background-color: #444;
}

.feature-card-2:hover {
  background-color: #769399;
}
/* Иконка в карточке */
.feature-icon {
  width: 6rem;
  height: 6rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Заголовок карточки */
.feature-title {
  font-size: 2.2rem;
  color: #ffffed;
  font-weight: 400;
  margin-bottom: 0rem;
  line-height: 2;
  pointer-events: none;
}

/* Описание карточки */
.feature-description {
  font-size: 1.5rem;
  color: #e0e0e0;
  line-height: 1.4;
  font-weight: 300;
  opacity: 0.9;
  pointer-events: none;
}

/* ===== Секция "Готовы начать?" ===== */
.cta-section {
  padding: 6rem 0rem;
  position: relative;
  z-index: 1;
  max-width: 120rem;
  margin: 0 auto;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30rem;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
}

.cta-content {
  flex: 1;
  max-width: 60rem;
}

.cta-title {
  font-size: 3.5rem;
  color: #ffffed;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.3rem;
  color: #e0e0e0;
  line-height: 1.5;
  font-weight: 300;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

/* ===== ОБЕ КНОПКИ: БАЗА ===== */
/* ===== ОБЩИЕ СТИЛИ ДЛЯ ОБЕИХ КНОПОК ===== */
.cta-btn-download,
.cta-btn-demo {
  display: inline-flex;
  align-items: center; /* вертикальное центрирование */
  justify-content: flex-start;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  line-height: 1.2; /* фиксированная высота строки, меньше размера иконки */
  border-radius: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box; /* border внутри padding */
  border-style: solid;
  transition: all 0.3s ease;
}

/* ===== ИКОНКИ В КНОПКАХ ===== */
.cta-icon-img {
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 1rem;
  object-fit: contain;
  transition: transform 0.2s ease;
  /* Принудительно убираем baseline-смещение */
  vertical-align: middle;
  flex-shrink: 0; /* иконка не сжимается */
}

/* ===== КНОПКА "СКАЧАТЬ СЕЙЧАС" ===== */
.cta-btn-download {
  background-color: #a0c7cf;
  color: #151515;
  border: none; /* обводка отсутствует */
}

.cta-btn-download:hover {
  background-color: #6b8ea3;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.5rem rgba(69, 99, 119, 0.4);
}

.cta-btn-download:hover .cta-icon-img,
.cta-btn-demo:hover .cta-icon-img {
  transform: translateY(-0.2rem);
}

/* ===== КНОПКА "ЗАПРОСИТЬ ДЕМО" ===== */
.cta-btn-demo {
  background-color: transparent;
  color: var(--text-color);
  border-width: 0.2rem;
  border-color: var(--text-color);
  padding: calc(1rem - 0.2rem) 2.7rem; /* компенсация границы */
}

/* Перекрашиваем иконку в цвет #a0c7cf (если монохромная SVG) */
.cta-btn-demo .cta-icon-img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(8%) saturate(1157%)
    hue-rotate(149deg) brightness(92%) contrast(86%);
}

.cta-btn-demo:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.5rem rgba(160, 199, 207, 0.3);
  background-color: rgba(160, 199, 207, 0.05);
}

/* ===== Адаптивность для планшетов и мобильных ===== */
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 2rem;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-actions {
    align-items: center;
  }

  .cta-btn-download {
    padding-left: 0; /* центрирование иконки + текста */
  }

  .cta-btn-demo {
    padding: 0.8rem 2.5rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 2.8rem;
  }

  .cta-description {
    font-size: 1.6rem;
  }

  .cta-btn-download,
  .cta-btn-demo {
    font-size: 1.6rem;
  }
}
/* Адаптивность для планшетов */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .features-section {
    padding: 6rem 3rem;
  }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 40rem;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .features-section {
    padding: 4rem 2rem;
  }

  .features-header h2 {
    font-size: 3rem;
  }

  .features-subtitle {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 2.5rem 2rem;
  }

  .feature-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
  }

  .feature-title {
    font-size: 2rem;
  }

  .feature-description {
    font-size: 1.5rem;
  }
}

/* Для очень больших экранов */
@media (min-width: 1400px) {
  .features-grid {
    gap: 3rem;
  }

  .feature-card {
    padding: 2.5rem 2rem;
  }
}
/* Адаптивность */
@media (max-width: 76.8rem) {
  .for-whom-section {
    padding: 6rem 3rem;
  }

  .whom-header h2 {
    font-size: 3rem;
  }

  .header-subtitle {
    font-size: 1.8rem;
  }

  .whom-card {
    padding: 3rem 2.5rem;
  }

  .whom-card h3 {
    font-size: 2.2rem;
  }

  .whom-list li {
    font-size: 1.6rem;
  }
}

@media (max-width: 48rem) {
  .for-whom-section {
    padding: 4rem 2rem;
  }

  /* На мобильных превращаем сетку 2x2 в вертикальный стек */
  .for-whom-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }

  /* Заголовок на всю ширину */
  .whom-header {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .whom-header h2 {
    font-size: 2.5rem;
  }

  .header-subtitle {
    font-size: 1.6rem;
  }

  /* Карточки на всю ширину */
  .whom-card {
    padding: 2.5rem 2rem;
  }

  .whom-card h3 {
    font-size: 2rem;
  }

  .whom-list li {
    font-size: 1.5rem;
    padding-left: 3rem;
  }

  .check-icon {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.6rem;
  }
}

/* Для очень больших экранов */
@media (min-width: 120rem) {
  .for-whom-section {
    padding: 10rem 5rem;
  }

  .whom-header h2 {
    font-size: 4rem;
  }

  .header-subtitle {
    font-size: 2.2rem;
  }

  .whom-card h3 {
    font-size: 2.6rem;
  }

  .whom-list li {
    font-size: 1.8rem;
  }
}
/* Скрываем на мобильных устройствах */
@media (max-width: 48rem) {
  .large-logo {
    display: none; /* Полностью скрываем на мобильных */
  }

  .hero-section {
    overflow: visible; /* Убираем обрезку на мобильных */
  }
}
/* Адаптивность для контента главной страницы */
@media (max-width: 48rem) {
  .empty-main {
    margin-top: 7rem;
    padding: 1rem;
  }
}

/* ===== FEATURES PAGE STYLES ===== */

/* Сетка карточек 3x2 для Features страницы */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 110rem;
  margin: 0 auto;
}

.feature-card {
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 20rem;
}

.feature-card-1 {
  background-color: #3a3a3a;
}

.feature-card-2 {
  background-color: #637a7f;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
}

.feature-card-1:hover {
  background-color: #444;
}

.feature-card-2:hover {
  background-color: #769399;
}

.feature-icon {
  width: 7rem;
  height: 7rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-title {
  font-size: 2rem;
  color: #ffffed;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-description {
  font-size: 1.4rem;
  color: #e0e0e0;
  line-height: 1.4;
  font-weight: 300;
  opacity: 0.9;
}

/* ===== Секция "Живая лекция" и "AI-ассистент на базе GPT-4" ===== */
.lecture-ai-section {
  padding: 8rem 5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  background-color: rgba(21, 21, 21, 0.5);
}

.lecture-ai-container {
  max-width: 140rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.lecture-block,
.ai-block {
  padding: 2rem;
}

.lecture-title,
.ai-title {
  font-size: 2.2rem;
  color: #ffffed;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.lecture-description,
.ai-description {
  font-size: 1.5rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.lecture-list,
.ai-list {
  list-style: none;
}

.lecture-list li,
.ai-list li {
  font-size: 1.5rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 3rem;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.lecture-list .check-icon,
.ai-list .check-icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffed;
  font-size: 1.6rem;
  font-weight: bold;
}

/* Карусель в центре */
.carousel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.carousel-item {
  font-size: 3rem;
  color: #ffffed;
  font-weight: 300;
}

.carousel-icon {
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
}

.carousel-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 0.8rem;
  background-color: #a0c7cf;
  color: #151515;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.carousel-btn:hover {
  background-color: #6b8ea3;
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 1.5rem rgba(69, 99, 119, 0.4);
}

/* ===== Секция "Поддержка 30+ языков программирования" ===== */
.languages-section {
  padding: 8rem 5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.languages-container {
  max-width: 120rem;
  margin: 0 auto;
}

.languages-header {
  text-align: center;
  margin-bottom: 4rem;
}

.languages-header h2 {
  font-size: 3.5rem;
  color: #ffffed;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.languages-subtitle {
  font-size: 1.5rem;
  color: #e0e0e0;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.8;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.language-card {
  background-color: #3a3a3a;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-card:nth-child(2n) {
  background-color: #637a7f;
}

.language-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
}

.language-card:nth-child(2n):hover {
  background-color: #769399;
}

.language-card:hover {
  background-color: #444;
}

.language-icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.language-name {
  font-size: 1.8rem;
  color: #ffffed;
  font-weight: 400;
}

/* ===== Адаптивность для Features ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .languages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .lecture-ai-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .languages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .lecture-ai-section {
    padding: 4rem 2rem;
  }

  .languages-section {
    padding: 4rem 2rem;
  }

  .languages-header h2 {
    font-size: 2.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .languages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .language-card {
    padding: 1.5rem 1rem;
    min-height: 12rem;
  }

  .language-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
  }

  .language-name {
    font-size: 1.5rem;
  }
}
