


/* Стили для хэдэра */
  .header {
    background: var(--secondary-color); /* Цвет фона задаётся из темы */
    padding: 15px 0;
    box-shadow: 0 4px 8px var(--button-shadow);
  }
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo img {
    height: 50px;
    width: auto;
  }
  .nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .nav ul li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 8px 12px;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  .nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
  }
  .header-buttons {
    display: flex;
    gap: 10px;
  }
  .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
  }
  .btn-login {
    background: transparent;
    color: var(--primary-color);
  }
  .btn-login:hover {
    background: var(--primary-color);
    color: var(--text-color);
  }
  .btn-signup {
    background: var(--button-bg);
    color: var(--button-text);
    border: none;
  }
  .btn-signup:hover {
    background: var(--button-hover-bg);
    transform: scale(1.1);
  }
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s ease;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
    .menu-toggle {
      display: flex;
    }
  }




/* Стили для футера */
.site-footer {
  position: relative;
  background: #1a1a1a;       /* Темный фон */
  color: #f0f0f0;            /* Светлый текст */
  padding: 25px 0;
  text-align: center;
}

/* Затемняющий оверлей */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Немного сильнее затемнение */
  z-index: 1;
}

/* Контейнер для содержимого футера */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Информационный блок с текстом */
.footer-disclaimer {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Нижняя строка с копирайтом */
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  font-size: 13px;
  opacity: 0.85;
}
/* === Глобальные переменные для стилизации Hero === */
:root {
    --hero-bg: url('images/{{image}}'); /* Фоновое изображение */
    --hero-overlay: rgba(0, 0, 0, 0.5); /* Затемнение фона */
    --hero-text-color: /online.htmlffffff; /* Основной цвет текста */
    --hero-title-color: var(--primary-color); /* Цвет заголовка */
    --hero-subtitle-color: var(--secondary-color); /* Цвет подзаголовка */
    --hero-shadow: rgba(0, 0, 0, 0.3); /* Тень */
}

/* === Hero Section === */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: var(--hero-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Затемнение поверх фонового изображения */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

/* Контейнер Hero */
.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

/* === Hero Layout === */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* === Hero Content === */
.hero-content {
    flex: 1 1 50%;
    max-width: 500px;
    text-align: left;
    color: var(--hero-text-color);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--hero-title-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-in-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--hero-subtitle-color);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-in-out;
}

/* === Hero Buttons === */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* === Кнопки === */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--button-bg);
    color: var(--button-text);
    border: none;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.btn-primary:hover {
    background: var(--button-hover-bg);
    transform: scale(1.05);
}

/* Outline Button */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--button-bg);
    color: var(--button-bg);
}

.btn-secondary:hover {
    background: var(--button-bg);
    color: var(--button-text);
    transform: scale(1.05);
}

/* === Hero Image === */
.hero-image {
    flex: 1 1 50%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--hero-shadow);
    animation: fadeIn 1.5s ease-in-out;
}

/* === Анимации === */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* === Адаптация под мобильные устройства === */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 50px 15px;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}



/* Основной контейнер секции параллакса */
.u-parallax-simple {
  position: relative;
  overflow: hidden;
  height: 25rem;
  background-color: var(--background-color);
}

/* Фоновый слой с изображением */
.u-parallax-simple__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Оверлей для затемнения фонового изображения */
.u-parallax-simple__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Используем затемнение, аналогичное hero-overlay; при необходимости замените на переменную, например, var(--hero-overlay) */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Контейнер с контентом (заголовок, описание) */
.u-parallax-simple__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

/* Заголовок и описание — текст оформляется с использованием глобальных переменных темы */
.u-parallax-simple__caption,
.u-parallax-simple__desc {
  padding: 1rem 0;
  text-align: center;
  color: var(--primary-color);
  overflow-wrap: anywhere;
}

.u-parallax-simple__caption {
  margin: 0;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  font-size: clamp(1.75rem, 2.5vw + 1.25rem, 2.25rem);
}

.u-parallax-simple__desc {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Дополнительная адаптивность для заголовков */
@media screen and (max-width: 48rem) {
  .u-parallax-simple__caption {
    font-size: 1.75rem;
  }
}


.faq-section {
  background: var(--background-color);
  padding: 60px var(--container-padding);
  color: var(--text-color);
}

.faq-section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-color);
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--secondary-color);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 15px 20px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section-title {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}


.about-alt3 {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary-color), var(--background-color));
  color: var(--text-color);
}

.about-alt3 .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  padding: 20px;
}

.about-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-description {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-features li {
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.about-contact {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-contact:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    padding: 0;
  }
  .about-title {
    font-size: 2.2rem;
  }
  .about-description {
    font-size: 1rem;
  }
  .about-image {
    margin-bottom: 20px;
  }
}


/* === 📌 Layout (Структура карточек) === */

.cards-section {
    padding: 60px 20px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 15px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 8px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
}

.card-description {
    font-size: 1rem;
    margin-top: 10px;
}

.btn-primary {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

/* === 📌 Mobile Adaptive === */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 10px;
    }

    .card-content {
        padding: 10px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .btn-primary {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}


.features-new {
  background: var(--features-bg);
  padding: 80px 20px;
  text-align: center;
  color: var(--features-text-color);
}

.features-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  color: var(--features-title-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.features-subheading {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--features-subtitle-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--features-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px var(--features-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px var(--features-card-shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--features-icon-bg);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feature-card-title {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--features-title-color);
  text-transform: uppercase;
}

.feature-card-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--features-text-color);
}

@media (max-width: 768px) {
  .features-heading {
    font-size: 2.2rem;
  }
  .features-subheading {
    font-size: 1rem;
  }
}


.stats-circle {
  background: var(--secondary-color);
  padding: 100px 20px;
  text-align: center;
  color: var(--text-color);
}

.stats-circle .container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-circle-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.stats-circle-description {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.stats-circle-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stats-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.circle {
  width: 150px;
  height: 150px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.circle:hover {
  transform: scale(1.05);
}

.circle-number {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--accent-color);
}

.circle-label {
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-color);
  margin: 0;
}

@media (max-width: 768px) {
  .stats-circle-items {
    flex-direction: column;
    gap: 30px;
  }
  .circle {
    width: 120px;
    height: 120px;
  }
  .circle-number {
    font-size: 2rem;
  }
  .circle-label {
    font-size: 0.9rem;
  }
}



/* Cookie Section Styles */
.cookie-section {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  /* Дополнительные стили для контейнера, если нужно */
}

.cookie-popup {
  display: none;  /* Управляется через JS */
  background: var(--secondary-color);
  color: var(--text-color);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--font-primary);
  max-width: 90%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-popup p {
  margin: 0;
  font-size: 16px;
  flex: 1 1 auto;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
}


.games-unique {
  padding: 80px 20px;
  background: var(--background-color);
  text-align: center;
}

.games-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.games-section-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.games-section-subtitle {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-color);
  opacity: 0.8;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  perspective: 1000px;
}

.card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.card-inner:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-inner:hover .card-img {
  transform: scale(1.1);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.card-inner:hover .card-info {
  transform: translateY(0);
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: var(--button-text);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-desc {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--button-text);
  margin-bottom: 15px;
}

.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-bg);
  color: var(--button-text);
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-btn:hover {
  background: var(--button-hover-bg);
  transform: scale(1.05);
}



    /* Стили для формы */
    .contact-form {
      background: var(--bg-section);
      padding: 60px 30px;
      margin: 80px auto;
      max-width: 600px;
      border-radius: 12px;
      border: 2px solid var(--border-section);
      position: relative;
      overflow: hidden;
    }

    /* Затемнённый оверлей для всей секции */
    .contact-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-bg);
      z-index: 0;
    }

    /* Контейнер внутри секции */
    .container {
      position: relative;
      z-index: 1;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Основной блок с формой */
    .contact-form__content {
      background: var(--bg-content);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 10px var(--shadow-color);
    }

    /* Заголовок формы */
    .contact-form__title {
      font-family: var(--font-title);
      font-size: 2.5rem;
      color: var(--title-color);
      text-transform: uppercase;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Метки для полей ввода */
    .contact-form label {
      display: block;
      font-family: var(--font-body);
      font-size: 1.1rem;
      color: var(--label-color);
      margin-bottom: 5px;
    }

    /* Поля ввода и textarea */
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--label-color);
      border: 1px solid var(--input-border);
      border-radius: 8px;
      outline: none;
      transition: border 0.3s ease;
    }

    /* Фокус на полях ввода */
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--input-focus);
    }

    /* Кнопка отправки */
    .submit-btn {
      display: block;
      width: 100%;
      padding: 14px 0;
      background: var(--button-bg);
      color: #FFFFFF;
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: bold;
      text-transform: uppercase;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(255, 111, 97, 0.4);
    }

    /* Эффект при наведении на кнопку */
    .submit-btn:hover {
      background: var(--button-hover);
      transform: scale(1.05);
    }

    /* Сообщение об успешной отправке */
    #success-message {
      display: none;
      text-align: center;
      font-family: var(--font-body);
      font-size: 1.2rem;
      color: var(--success-color);
      margin-top: 20px;
      opacity: 0;
      animation: fadeIn 0.5s ease-in-out forwards;
    }

    /* Анимация появления сообщения */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Адаптивность */
    @media (max-width: 768px) {
      .contact-form {
        padding: 60px 15px;
        margin: 40px auto;
      }

      .contact-form__content {
        padding: 30px;
      }

      .contact-form__title {
        font-size: 2rem;
      }

      .contact-form label {
        font-size: 1rem;
      }

      .submit-btn {
        font-size: 1rem;
        padding: 12px 20px;
      }
    }

