@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Poppins:wght@400;600;700&display=swap");
* {
  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: "Roboto", sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background-color: #FBF7F0;
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 100%;
  padding: 0 15px;
}
@media (min-width: 375px) {
  .container {
    max-width: 355px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

.title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #7B3F00;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 44px;
  }
}

.text {
  font-size: 16px;
  color: #4A4A4A;
  text-align: center;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .text {
    font-size: 18px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 16px;
}
.btn--contained {
  background-color: #FF7F50;
  color: #FFFFFF;
  border: 1px solid #FF7F50;
}
.btn--contained:hover {
  background-color: #ff5a1d;
  border-color: #ff5a1d;
}
.btn--outlined {
  background-color: transparent;
  color: #7B3F00;
  border: 1px solid #7B3F00;
}
.btn--outlined:hover {
  background-color: #7B3F00;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .btn {
    padding: 15px 30px;
    font-size: 18px;
  }
}

.header {
  background-color: #FBF7F0;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  flex-shrink: 0;
  z-index: 100;
}
.header__logo-img {
  max-width: 180px;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo-img {
    max-width: 220px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1024px) {
  .header__menu {
    flex-direction: row;
    gap: 30px;
  }
}
.header__menu-item {
  text-align: center;
}
.header__menu-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #4A4A4A;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 0;
  position: relative;
}
.header__menu-link:hover {
  color: #FF7F50;
}
.header__menu-link--active {
  color: #7B3F00;
  font-weight: 700;
}
.header__menu-link--active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #7B3F00;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
.header__menu-link:not(.header__menu-link--active)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FF7F50;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.header__menu-link:not(.header__menu-link--active):hover::after {
  transform: scaleX(1);
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 100;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #7B3F00;
  transition: all 0.3s ease;
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header__nav.is-active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FBF7F0;
  z-index: 99;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  overflow-y: auto;
}

.hero {
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.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__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 60px;
  }
}
.hero__text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 120px 0;
  }
}

.features,
.courses,
.offer,
.advantages,
.testimonials {
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .features,
  .courses,
  .offer,
  .advantages,
  .testimonials {
    padding: 80px 0;
  }
}

.features__head, .features__list {
  margin-bottom: 30px;
}
.features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .features__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (min-width: 1024px) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.features__list-item {
  background-color: #E6E1D9;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.features__list-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #7B3F00;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .features__list-title {
    font-size: 24px;
  }
}
.features__list-text {
  font-size: 16px;
  color: #4A4A4A;
}

.about {
  padding: 60px 0;
  background-color: #E6E1D9;
}
@media (min-width: 1024px) {
  .about {
    padding: 80px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.about__img-wrapper {
  flex: 1;
  text-align: center;
}
.about__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.about__content {
  flex: 1;
}
.about__head {
  text-align: left;
}
.about__head .title,
.about__head .text {
  text-align: left;
}
.about__description {
  margin-top: 20px;
}
.about__text {
  font-size: 16px;
  margin-bottom: 15px;
  color: #4A4A4A;
}
.about__text:last-of-type {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about__text {
    font-size: 17px;
  }
}

.courses__head {
  margin-bottom: 40px;
}
.courses__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .courses__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (min-width: 1024px) {
  .courses__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.courses__list-item {
  background-color: #FBF7F0;
  border: 1px solid #D3D3D3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.courses .courses-item-title-bg-relative {
  background-color: #7B3F00;
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
  position: relative;
}
.courses__item-label-absolute {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #6A057F;
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
}
.courses__item-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}
.courses__item-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.courses__item-text {
  font-size: 15px;
  color: #4A4A4A;
  margin-bottom: 20px;
  flex-grow: 1;
}
.courses__features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.courses__features-item {
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}
.courses__features-item::before {
  content: "✓";
  color: #FF7F50;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.courses__item-price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #7B3F00;
  text-align: center;
  margin-top: auto;
  margin-bottom: 20px;
  display: block;
}
.courses .btn {
  width: 100%;
  text-align: center;
}

.offer {
  background-color: #E6E1D9;
}
.offer__head {
  margin-bottom: 40px;
}
.offer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .offer__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (min-width: 1024px) {
  .offer__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.offer__list-item {
  background-color: #FBF7F0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
}
.offer__item-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 20px;
}
.offer__item-info {
  padding: 0 20px;
}
.offer__item-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #7B3F00;
  margin-bottom: 10px;
}
.offer__item-text {
  font-size: 16px;
  color: #4A4A4A;
}

.advantages__wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
@media (min-width: 1024px) {
  .advantages__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.advantages__content {
  flex: 1;
}
.advantages__head {
  text-align: left;
}
.advantages__head .title,
.advantages__head .text {
  text-align: left;
}
.advantages__text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #4A4A4A;
}
@media (min-width: 768px) {
  .advantages__text {
    font-size: 17px;
  }
}
.advantages__blockquote {
  font-style: italic;
  margin: 20px 0;
  padding: 15px 20px;
  border-left: 4px solid #FF7F50;
  background-color: white;
  color: #4A4A4A;
  font-size: 17px;
}
.advantages__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.advantages__list-item {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #4A4A4A;
}
.advantages__list-item::before {
  content: "✔";
  color: #FF7F50;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.advantages__img-wrapper {
  flex: 1;
  text-align: center;
}
.advantages__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonials {
  background-color: #E6E1D9;
}
.testimonials__head {
  margin-bottom: 40px;
}
.testimonials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .testimonials__list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (min-width: 1024px) {
  .testimonials__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.testimonials__list-item {
  background-color: #FBF7F0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials__item-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  color: #4A4A4A;
}
.testimonials__item-name {
  font-weight: 500;
  color: #7B3F00;
  font-size: 15px;
  text-align: right;
  display: block;
  margin-top: auto;
}

.cta {
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .cta__title {
    font-size: 50px;
  }
}
.cta__text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cta__text {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .cta {
    padding: 100px 0;
  }
}

.contact {
  padding: 60px 0;
  background-color: #FBF7F0;
}
@media (min-width: 1024px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__head {
  margin-bottom: 40px;
}
.contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #E6E1D9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .contact__form {
    padding: 40px;
  }
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
    gap: 30px;
  }
}
.contact__form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact__form-label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #7B3F00;
  margin-bottom: 8px;
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #D3D3D3;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #4A4A4A;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  outline: none;
  border-color: #FF7F50;
  box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.2);
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact .btn--contained {
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .contact .btn--contained {
    width: auto;
    min-width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact__form-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  display: none;
}
.contact__form-status.success {
  background-color: #6bf582;
  color: #065b14;
  display: block;
}
.contact__form-status.error {
  background-color: #d327f6;
  color: #18011d;
  display: block;
}

.footer {
  background-color: #7B3F00;
  color: #FFFFFF;
  padding: 40px 0 20px;
  font-size: 15px;
}
@media (min-width: 1024px) {
  .footer {
    padding: 60px 0 30px;
  }
}
.footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
.footer__block {
  text-align: center;
}
@media (min-width: 768px) {
  .footer__block {
    text-align: left;
  }
}
.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer__logo-img {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer__text {
  font-size: 15px;
  line-height: 1.7;
  color: white;
}
.footer__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
  color: #FFFFFF;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__title {
    text-align: left;
  }
}
.footer__menu, .footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu-item, .footer__contact-item {
  margin-bottom: 12px;
}
.footer__menu-item:last-child, .footer__contact-item:last-child {
  margin-bottom: 0;
}
.footer__menu-link, .footer__contact-link {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer__menu-link:hover, .footer__contact-link:hover {
  color: #FF7F50;
}
.footer__contact-item-before {
  position: relative;
  padding-left: 25px;
}
.footer__contact-item-before::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.footer__contact-item-before:nth-child(1)::before {
  background-image: url("../img/icons/phone-icon.svg");
}
.footer__contact-item-before:nth-child(2)::before {
  background-image: url("../img/icons/mail-icon.svg");
}
.footer__contact-item-before:nth-child(3)::before {
  background-image: url("../img/icons/location-icon.svg");
}
.footer__copy {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 1024px) {
  .footer__copy {
    margin-top: 60px;
  }
}

.legal {
  padding: 60px 0;
  background-color: #FBF7F0;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .legal {
    padding: 80px 0;
  }
}
.legal__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}
.legal__head {
  margin-bottom: 40px;
  text-align: center;
}
.legal__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #7B3F00;
  font-size: 32px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 40px;
  }
}
.legal__last-updated {
  font-size: 16px;
  color: #4A4A4A;
  font-style: italic;
}
.legal__section {
  background-color: #E6E1D9;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.legal__section:last-of-type {
  margin-bottom: 0;
}
.legal__section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #7B3F00;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .legal__section-title {
    font-size: 28px;
  }
}
.legal__section-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #FF7F50;
  margin-top: 25px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .legal__section-subtitle {
    font-size: 22px;
  }
}
.legal__section-text {
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 15px;
}
.legal__section-text:last-of-type {
  margin-bottom: 0;
}
.legal__section-text strong {
  font-weight: 700;
  color: #7B3F00;
}
.legal__section-list {
  padding-left: 25px;
  margin-bottom: 15px;
}
.legal__section-list-item {
  list-style: disc;
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 8px;
}
.legal__section-list-item:last-child {
  margin-bottom: 0;
}
.legal__contact-info {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #D3D3D3;
}
.legal__contact-info .title {
  margin-bottom: 10px;
  color: #7B3F00;
}
.legal__contact-info .text {
  margin-bottom: 30px;
  color: #4A4A4A;
}
.legal__contact-info a {
  display: inline-block;
  margin: 0 10px 15px;
  padding: 10px 20px;
  background-color: #FF7F50;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.legal__contact-info a:hover {
  background-color: #ff5a1d;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #7B3F00;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.cookie-banner.show {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: center;
    padding: 15px 20px;
    gap: 25px;
  }
}
.cookie-banner__text {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    text-align: left;
    flex-grow: 1;
  }
}
.cookie-banner__text a {
  color: #FF7F50;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #ffa483;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .cookie-banner__buttons {
    flex-direction: row;
    gap: 15px;
  }
}
.cookie-banner__btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}
.cookie-banner__btn--accept {
  background-color: #FF7F50;
  color: #FFFFFF;
  border-color: #FF7F50;
}
.cookie-banner__btn--accept:hover {
  background-color: #ff5a1d;
  border-color: #ff5a1d;
}
.cookie-banner__btn--decline {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.cookie-banner__btn--decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}