@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: "Exo 2", sans-serif;
  background-color: #1a202c;
  color: #ffffff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  color: #8a2be2;
}

a {
  color: #8a2be2;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.header {
  position: relative;
  background-color: #2c3e50;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .header__wrapper {
    padding: 0 2rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
}
.header__logo-img {
  margin-right: 0.5rem;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .header__logo-img {
    width: 48px;
    height: 48px;
  }
}
.header__logo-text {
  display: none;
}
@media (min-width: 768px) {
  .header__logo-text {
    display: block;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media (min-width: 768px) {
  .header__menu {
    flex-direction: row;
  }
}
.header__menu-item {
  margin-left: 1.5rem;
}
@media (min-width: 768px) {
  .header__menu-item {
    margin-left: 1.5rem;
  }
}
.header__menu-link {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #8a2be2;
  text-decoration: none;
}
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
@media (min-width: 768px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle-line {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header.menu-open .header__nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #2c3e50;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
}
@media (min-width: 768px) {
  .header.menu-open .header__nav {
    display: block;
    position: static;
    width: auto;
    background-color: transparent;
    box-shadow: none;
  }
}
.header.menu-open .header__menu {
  flex-direction: column;
  padding: 1rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .header.menu-open .header__menu {
    flex-direction: row;
    padding: 0;
    text-align: left;
  }
}
.header.menu-open .header__menu-item {
  margin: 0;
}
.header.menu-open .header__menu-item:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .header.menu-open .header__menu-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.header.menu-open .header__menu-link {
  display: block;
  padding: 0.5rem 1rem;
}
.header.menu-open .header__toggle-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header.menu-open .header__toggle-line:nth-child(2) {
  opacity: 0;
}
.header.menu-open .header__toggle-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 7rem 0;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 32, 44, 0.7);
  z-index: 1;
}
.hero__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .hero__wrapper {
    padding: 0 2rem;
  }
}
.hero__title {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__text {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: #a0aec0;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 1.15rem;
  }
}
@media (min-width: 1024px) {
  .hero__text {
    font-size: 1.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8a2be2;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn:hover {
  background-color: #701ac0;
  transform: translateY(-2px);
  text-decoration: none;
}
.btn__img {
  width: 150px;
  height: auto;
}
@media (min-width: 768px) {
  .btn__img {
    width: 178px;
  }
}

.heroes {
  padding: 3rem 0;
  background-color: #1a202c;
}
@media (min-width: 768px) {
  .heroes {
    padding: 5rem 0;
  }
}
.heroes__head {
  text-align: center;
  margin-bottom: 3rem;
}
.heroes__head-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  color: #8a2be2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .heroes__head-title {
    font-size: 2.5rem;
  }
}
.heroes__head .line {
  width: 80px;
  height: 4px;
  background-color: #8a2be2;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.heroes__head-text {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  color: #a0aec0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .heroes__head-text {
    font-size: 1.1rem;
  }
}
.heroes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .heroes__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .heroes__list {
    gap: 3rem;
  }
}
.heroes__list-item {
  background-color: #2c3e50;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .heroes__list-item {
    flex-basis: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media (min-width: 1024px) {
  .heroes__list-item {
    flex-basis: calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
  }
}
.heroes__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
.heroes__item-img {
  width: 100%;
  height: auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 1rem;
}
.heroes__item-info {
  padding: 0 1.5rem;
}
.heroes__item-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.heroes__item-text {
  font-family: "Exo 2", sans-serif;
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .heroes__item-text {
    font-size: 1rem;
  }
}

.features {
  padding: 3rem 0;
  background-color: #1a202c;
}
@media (min-width: 768px) {
  .features {
    padding: 5rem 0;
  }
}
.features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .features__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .features__list {
    gap: 4rem;
  }
}
.features__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #2c3e50;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .features__list-item {
    flex-basis: calc(50% - 2.5rem);
    max-width: calc(50% - 2.5rem);
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .features__list-item {
    flex-direction: row;
    text-align: left;
    flex-basis: calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
  .features__list-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.features__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
.features__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .features__item-img {
    margin-bottom: 0;
    margin-right: 1.5rem;
    max-width: 180px;
  }
  .features__list-item:nth-child(even) .features__item-img {
    margin-right: 0;
    margin-left: 1.5rem;
  }
}
.features__item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .features__item-info {
    align-items: flex-start;
  }
}
.features__item-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  color: #8a2be2;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .features__item-title {
    font-size: 1.75rem;
  }
}
.features__item-text {
  font-family: "Exo 2", sans-serif;
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .features__item-text {
    font-size: 1rem;
  }
}

.about {
  padding: 3rem 0;
  background-color: #2c3e50;
}
@media (min-width: 768px) {
  .about {
    padding: 5rem 0;
  }
}
.about__head {
  text-align: center;
  margin-bottom: 3rem;
}
.about__head-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  color: #8a2be2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about__head-title {
    font-size: 2.5rem;
  }
}
.about__head .line {
  width: 80px;
  height: 4px;
  background-color: #8a2be2;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.about__head-text {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  color: #a0aec0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .about__head-text {
    font-size: 1.1rem;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .about__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    text-align: left;
  }
}
.about__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .about__img {
    flex: 1;
  }
}
.about__img-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) {
  .about__info {
    flex: 1;
  }
}
.about__info-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .about__info-title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .about__info-title {
    text-align: left;
  }
}
.about__info-text {
  font-family: "Exo 2", sans-serif;
  font-size: 0.95rem;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .about__info-text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .about__info-text {
    text-align: left;
  }
}
.about__info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  color: #a0aec0;
  font-family: "Exo 2", sans-serif;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .about__info-list {
    font-size: 1rem;
  }
}
.about__info-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.about__info-item::before {
  content: "•";
  color: #8a2be2;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}
.about__info-item strong {
  color: #ffffff;
}

.contact {
  padding: 3rem 0;
  background-color: #1a202c;
}
@media (min-width: 768px) {
  .contact {
    padding: 5rem 0;
  }
}
.contact__head {
  text-align: center;
  margin-bottom: 3rem;
}
.contact__head-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  color: #8a2be2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .contact__head-title {
    font-size: 2.5rem;
  }
}
.contact__head .line {
  width: 80px;
  height: 4px;
  background-color: #8a2be2;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.contact__head-text {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  color: #a0aec0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contact__head-text {
    font-size: 1.1rem;
  }
}
.contact__address {
  margin-bottom: 3rem;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact__list {
    gap: 3rem;
  }
}
.contact__list-item {
  background-color: #2c3e50;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .contact__list-item {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
  }
}
@media (min-width: 1024px) {
  .contact__list-item {
    flex: 1 1 calc(33.333% - 3rem);
    max-width: calc(33.333% - 3rem);
  }
}
.contact__item-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.contact__item-text {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  color: #a0aec0;
  line-height: 1.5;
}
.contact__form {
  background-color: #2c3e50;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact__form {
    padding: 3rem;
  }
}
.contact__form-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
  }
}
.contact__form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #a0aec0;
  border-radius: 8px;
  background-color: #1a202c;
  color: #ffffff;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  flex: 1;
}
.contact__form-input::-moz-placeholder {
  color: #a0aec0;
  opacity: 0.7;
}
.contact__form-input::placeholder {
  color: #a0aec0;
  opacity: 0.7;
}
.contact__form-input:focus {
  outline: none;
  border-color: #8a2be2;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.3);
}
.contact__form-input.contact__form-input[name=message] {
  min-height: 120px;
  resize: vertical;
}
.contact__form-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #8a2be2;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact__form-btn:hover {
  background-color: #701ac0;
  transform: translateY(-2px);
}
.contact__form-status {
  margin-top: 1.5rem;
  text-align: center;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  color: #ffffff;
}

.legal {
  padding: 3rem 0;
  background-color: #1a202c;
  color: #a0aec0;
  font-family: "Exo 2", sans-serif;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .legal {
    padding: 5rem 0;
  }
}
.legal__title {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 3rem;
  }
}
.legal__intro-text {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #bfc8d4;
}
@media (min-width: 768px) {
  .legal__intro-text {
    font-size: 1.1rem;
  }
}
.legal__section {
  margin-bottom: 2.5rem;
}
.legal__section:last-of-type {
  margin-bottom: 0;
}
.legal__section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  color: #8a2be2;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid rgba(138, 43, 226, 0.5);
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .legal__section-title {
    font-size: 2.2rem;
  }
}
.legal__subsection-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .legal__subsection-title {
    font-size: 1.5rem;
  }
}
.legal__section-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.legal__section-text:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .legal__section-text {
    font-size: 1rem;
  }
}
.legal__section-text a {
  color: #8a2be2;
  text-decoration: underline;
}
.legal__section-text a:hover {
  color: #a358e8;
}
.legal__list {
  margin-left: 1.5rem;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.legal__list li {
  list-style: disc;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .legal__list li {
    font-size: 1rem;
  }
}
.legal__list li strong {
  color: #ffffff;
}
.legal__last-updated {
  text-align: right;
  font-size: 0.85rem;
  color: #a0aec0;
  margin-top: 3rem;
  border-top: 1px solid rgba(160, 174, 192, 0.2);
  padding-top: 1rem;
}

.footer {
  background-color: #2c3e50;
  padding: 3rem 0 1.5rem;
  color: #a0aec0;
  font-family: "Exo 2", sans-serif;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .footer__wrapper {
    gap: 3rem;
  }
}
.footer__block {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .footer__block {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer__block {
    flex: 1 1 calc(25% - 2.25rem);
    max-width: calc(25% - 2.25rem);
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer__logo {
    justify-content: flex-start;
  }
}
.footer__logo-img {
  margin-right: 0.5rem;
  width: 40px;
  height: 40px;
}
.footer__logo-text {
  line-height: 1.2;
}
.footer__text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer__title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  color: #8a2be2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-item {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__menu-item {
    justify-content: flex-start;
  }
}
.footer__menu-link {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #ffffff;
}
.footer__menu-icon {
  color: #8a2be2;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}
.footer__copy {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #a0aec0;
  border-top: 1px solid rgba(160, 174, 192, 0.2);
  padding-top: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cookie-banner__text {
  flex: 1;
  font-family: "Exo 2", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.cookie-banner__text a {
  color: #8a2be2;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #a358e8;
}
.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .cookie-banner__actions {
    flex-shrink: 0;
  }
}
.cookie-banner__button {
  background-color: #8a2be2;
  color: #ffffff;
  border: 2px solid #8a2be2;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cookie-banner__button:hover {
  background-color: #701ac0;
  border-color: #701ac0;
}
.cookie-banner__button--outline {
  background-color: transparent;
  border-color: #a0aec0;
  color: #a0aec0;
}
.cookie-banner__button--outline:hover {
  background-color: rgba(160, 174, 192, 0.2);
  color: #ffffff;
  border-color: #ffffff;
}