.raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
  margin: 0;
  color: #fff; /* Белый цвет текста */
  background-color: #111; /* Темно-серый фон */
}

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

a {
  color: #fff;
  text-decoration: none;
}

/* Стили хедера */
header {
  background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
  padding: 5px 0;
  position: fixed; /* Фиксированное положение хедера */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; /* Чтобы хедер был поверх других элементов */
}

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

header .logo img {
  height: 100px; /* Примерная высота логотипа */
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

header nav ul li {
  margin-left: 70px;
  font-size: 22px;
}

header nav ul li a.button {
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

header nav ul li a.button:hover {
  background-color: #fff;
  color: #000;
}

/* Стили секции hero */


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Затемнение фона */
  z-index: -1;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 50px;
}

.hero p {
  font-size: 1.3em;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}


/* Медиа запросы для адаптивности */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: center;
  }

  header nav ul {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }

  header nav ul li {
    margin: 10px 0;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1.2em;
  }
}

/* Стили секции с цитатой */
.quote-section {
    padding: 10px 0 80px 10; /* Увеличили padding-bottom */
  background-color: #222;
}

.quote-section .container {
  display: flex;
  align-items: center;

  justify-content: space-between;
}

.quote-section .quote-text {
  max-width: 50%;
  font-style: italic; /* Курсив для цитаты */
  font-size: 1.3em;
  line-height: 1.7;
}

.quote-section .quote-image {
  max-width: 40%;
}

.quote-section .quote-image img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Небольшое скругление углов */
  display: inline-block; /* Добавлено */
  vertical-align: middle;
}

/* Адаптивность для секции с цитатой */
@media (max-width: 768px) {
  .quote-section .container {
    flex-direction: column;
    text-align: center;
  }

  .quote-section .quote-text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .quote-section .quote-image {
    max-width: 80%;
  }
}

/* Стили секции каталога */
.catalog-section {
  padding: 80px 0;
  background-color: #111; /* Как основной фон */
  text-align: center;
}

.catalog-section .container {
  display: flex;
  align-items: center;
  justify-content: space-around; /* Распределяем пространство равномерно */
}

.catalog-section .catalog-content {
  max-width: 45%;
}

.catalog-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.catalog-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.catalog-section .button {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 15px 30px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.catalog-section .button:hover {
  background-color: #fff;
  color: #000;
}

.catalog-section .catalog-image {
  max-width: 40%;
}

.catalog-section .catalog-image img {
  width: 100%;
  height: auto;
}

/* Адаптивность для секции каталога */
@media (max-width: 768px) {
  .catalog-section .container {
    flex-direction: column;
  }

  .catalog-section .catalog-content {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .catalog-section .catalog-image {
    max-width: 60%;
  }

  .catalog-section h2 {
    font-size: 2em;
  }
}

/* Стили секции форума */
.forum-section {
  padding: 80px 0;
  background-color: #eee; /* Светло-серый фон */
  color: #333; /* Темный цвет текста */
}

.forum-section .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.forum-section .forum-content {
  max-width: 45%;
  text-align: left; /* Выравнивание текста по левому краю */
}

.forum-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.forum-section p {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.forum-section .button {
  display: inline-block;
  background-color: #333; /* Темный фон кнопки */
  color: #fff; /* Белый цвет текста кнопки */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.forum-section .button:hover {
  background-color: #555; /* Более темный фон при наведении */
}

.forum-section .forum-image {
  max-width: 40%;
}

.forum-section .forum-image img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Небольшое скругление углов */
}

/* Адаптивность для секции форума */
@media (max-width: 768px) {
  .forum-section .container {
    flex-direction: column;
    text-align: center;
  }

  .forum-section .forum-content {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .forum-section .forum-image {
    max-width: 60%;
  }
}