@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;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/subset-CormorantGaramond-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/subset-Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/subset-CormorantGaramond-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/subset-CormorantGaramond-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/subset-Poppins-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/subset-Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/subset-Poppins-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  color: #b8860b;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(135.8769230769, 98.9538461538, 8.1230769231);
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #000000;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
}
.btn--contained {
  background-color: #b8860b;
  color: #f5f5f5;
  border-color: #b8860b;
}
.btn--contained:hover {
  background-color: rgb(135.8769230769, 98.9538461538, 8.1230769231);
  border-color: rgb(135.8769230769, 98.9538461538, 8.1230769231);
  transform: translateY(-2px);
  color: #f5f5f5;
}
.btn--outlined {
  background-color: transparent;
  color: #b8860b;
  border-color: #b8860b;
}
.btn--outlined:hover {
  background-color: #b8860b;
  color: #f5f5f5;
  transform: translateY(-2px);
}

.header {
  background-color: #121212;
  color: #f5f5f5;
}
.header__top {
  display: none;
  padding: 0.5rem 0;
  background-color: rgb(5.25, 5.25, 5.25);
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .header__top {
    display: block;
  }
}
.header__address {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.header__address-item {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}
.header__address-icon {
  width: 16px;
  height: 16px;
  fill: #b8860b;
  margin-right: 0.4rem;
}
.header__address-text a {
  color: #f5f5f5;
}
.header__address-text a:hover {
  color: #b8860b;
}
.header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
}
@media (min-width: 768px) {
  .header__main {
    padding: 1rem 2rem;
  }
}
.header__logo-img {
  height: 40px;
}
@media (min-width: 768px) {
  .header__logo-img {
    height: 50px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  list-style: none;
}
.header__nav-item {
  position: relative;
  margin-left: 2rem;
}
.header__nav-item:hover .header__nav-link {
  color: #b8860b;
}
.header__nav-item:hover .header__nav-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.header__nav-link {
  color: #f5f5f5;
  padding: 1rem 0;
  display: block;
  transition: color 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.header__nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #121212;
  min-width: 200px;
  list-style: none;
  padding: 10px 0;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-top: 2px solid #b8860b;
}
.header__nav-dropdown-item a {
  padding: 10px 15px;
  display: block;
  color: #f5f5f5;
  font-size: 0.9rem;
}
.header__nav-dropdown-item a:hover {
  background-color: rgb(5.25, 5.25, 5.25);
  color: #b8860b;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #b8860b;
  border-radius: 10px;
  transition: all 0.3s linear;
  transform-origin: 1px;
}
.header.open .header__burger-line:nth-child(1) {
  transform: rotate(45deg);
}
.header.open .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}
.header.open .header__burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  background: linear-gradient(135deg, #121212 0%, #333333 100%);
  padding: 4rem 0;
  color: #f5f5f5;
}
@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}
.hero__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__row {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
.hero__content {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .hero__content {
    max-width: 50%;
  }
}
.hero__title {
  font-size: 2.5rem;
  color: #b8860b;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
.hero__text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero__img {
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .hero__img {
    margin-top: 0;
    width: 40%;
    animation: float-up 3s ease-in-out infinite alternate;
  }
}
.hero__img-img {
  width: 100%;
  height: auto;
}

@keyframes float-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
.cta {
  background-color: #b8860b;
  color: #121212;
  padding: 3rem 0;
  text-align: center;
  overflow: hidden;
}
.cta__subtitle {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.cta__title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #121212;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 2.5rem;
  }
}
.cta__content {
  transform: scale(1);
  transition: transform 0.5s ease;
}
.cta__content:hover {
  transform: scale(1.03);
}

.about,
.courses,
.prices,
.recommendations {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .about,
  .courses,
  .prices,
  .recommendations {
    padding: 6rem 0;
  }
}

.courses {
  background-color: #f5f5f5;
}
.courses__img-slider {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .courses__img-slider {
    flex-wrap: nowrap;
  }
}
.courses__img-item {
  flex: 0 0 80%;
  max-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .courses__img-item {
    flex: 0 0 45%;
  }
}
@media (min-width: 1024px) {
  .courses__img-item {
    flex: 1 1 auto;
    max-height: none;
    margin-bottom: 2rem;
    transform: scale(1);
    transition: transform 0.4s ease-in-out;
  }
  .courses__img-item:hover {
    transform: scale(1.05);
  }
}
.courses__img-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.courses__btn {
  margin-top: 2rem;
}
.courses__title {
  color: #b8860b;
}

.prices {
  background-color: #121212;
  color: #f5f5f5;
  text-align: center;
}
.prices__title {
  color: #f5f5f5;
}
.prices__description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: rgba(245, 245, 245, 0.8);
}
.prices__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .prices__row {
    flex-direction: row;
    justify-content: center;
  }
}
.prices__card {
  background-color: #222222;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
@media (min-width: 1024px) {
  .prices__card {
    width: 30%;
  }
}
.prices__card:hover {
  transform: translateY(-10px);
  border-color: #b8860b;
}
.prices__card--featured {
  background-color: #b8860b;
  color: #121212;
  transform: scale(1.05);
}
.prices__card--featured .prices__card-title,
.prices__card--featured .prices__card-price {
  color: #121212;
}
.prices__card--featured .btn--contained {
  background-color: #121212;
  color: #b8860b;
  border-color: #121212;
}
.prices__card--featured .btn--contained:hover {
  background-color: rgb(43.5, 43.5, 43.5);
}
.prices__card-title {
  font-size: 1.8rem;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.prices__card-duration {
  display: block;
  color: rgba(245, 245, 245, 0.6);
  margin-bottom: 1.5rem;
}
.prices__card-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.prices__card-features li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(245, 245, 245, 0.1);
}
.prices__card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
}
.prices__card-price strong {
  font-weight: inherit;
}
.prices__note {
  margin-top: 3rem;
  font-style: italic;
  color: rgba(245, 245, 245, 0.7);
}

.recommendations {
  background-color: #f5f5f5;
  text-align: center;
}
.recommendations__title {
  margin-bottom: 3rem;
}
.recommendations__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  flex-wrap: wrap;
  gap: 2rem;
}
.recommendations__item {
  max-width: 150px;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.recommendations__item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}
.recommendations__item-img {
  width: 100%;
  height: auto;
}

.footer {
  background-color: #121212;
  color: #f5f5f5;
  padding: 3rem 0 1rem;
  border-top: 5px solid #b8860b;
}
.footer__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .footer__row {
    gap: 1rem;
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .footer__column {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .footer__column {
    width: 23%;
  }
}
.footer__title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #b8860b;
}
.footer__address-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer__address-icon {
  width: 18px;
  height: 18px;
  fill: #b8860b;
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.footer__address-text a {
  color: #f5f5f5;
}
.footer__address-text a:hover {
  color: #b8860b;
}
.footer__nav-list {
  list-style: none;
}
.footer__nav-item {
  margin-bottom: 0.8rem;
}
.footer__nav-item a {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.95rem;
}
.footer__nav-item a:hover {
  color: #b8860b;
}
.footer__subscribe-form {
  margin-top: 1rem;
}
.footer__text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(245, 245, 245, 0.7);
}
.footer__subscribe-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer__subscribe-wrapper {
    flex-direction: row;
  }
}
.footer__subscribe-input {
  padding: 0.8rem;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #333;
  color: #f5f5f5;
  flex-grow: 1;
}
.footer__subscribe-input:focus {
  border-color: #b8860b;
  outline: none;
}
.footer__subscribe-btn {
  flex-shrink: 0;
}
.footer__copyright {
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  color: rgba(245, 245, 245, 0.5);
}

.form-status {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  color: #f5f5f5;
  z-index: 1000;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
.form-status.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.form-status.success {
  background-color: #388e3c;
}
.form-status.error {
  background-color: #d32f2f;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  z-index: 15;
  display: none;
  padding-top: 80px;
  overflow-y: auto;
}
.mobile-menu-overlay.open {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.mobile-menu-overlay .header__nav-list {
  flex-direction: column;
  text-align: center;
  padding: 0;
}
.mobile-menu-overlay .header__nav-item {
  margin: 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}
.mobile-menu-overlay .header__nav-item:last-child {
  border-bottom: none;
}
.mobile-menu-overlay .header__nav-link {
  font-size: 1.5rem;
  padding: 1.5rem 0;
}
.mobile-menu-overlay .header__nav-link:hover {
  background-color: rgba(184, 134, 11, 0.1);
}
.mobile-menu-overlay .header__nav-dropdown {
  position: static;
  display: block;
  background-color: transparent;
  border-top: none;
  padding: 0;
  opacity: 1;
  transform: none;
}
.mobile-menu-overlay .header__nav-dropdown-item a {
  font-size: 1.1rem;
  padding: 0.8rem;
  color: rgba(245, 245, 245, 0.8);
}
.mobile-menu-overlay .header__nav-dropdown-item a:hover {
  color: #b8860b;
  background-color: transparent;
}

.mobile-menu-overlay.open .header__nav {
  display: block;
}

.page-hero {
  background: #121212;
  color: #f5f5f5;
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 2px solid #b8860b;
}
.page-hero__title {
  color: #b8860b;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .page-hero__title {
    font-size: 3rem;
  }
}
.page-hero__text {
  font-size: 1rem;
  max-width: 800px;
  margin: 0.5rem auto 0;
  color: rgba(245, 245, 245, 0.7);
}

.course-catalog {
  padding: 5rem 0;
  background-color: #f5f5f5;
}
.course-catalog__title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.course-catalog__subtitle {
  text-align: center;
  font-style: italic;
  margin-bottom: 3rem;
  color: #333333;
}
.course-catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .course-catalog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .course-catalog__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.course-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.course-card__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease-out;
}
.course-card:hover .course-card__img {
  transform: scale(1.05);
}
.course-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.course-card__tag {
  display: inline-block;
  background-color: #b8860b;
  color: #121212;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.course-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #000000;
}
.course-card__excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.course-card__features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.course-card__features li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.4rem;
}
.course-card__features i {
  color: #b8860b;
  margin-right: 0.6rem;
  font-size: 1.1rem;
}
.course-card__btn {
  margin-top: auto;
}
.course-card--featured {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 3px solid #b8860b;
}
@media (min-width: 1024px) {
  .course-card--featured {
    transform: translateY(-10px) scale(1.05);
  }
  .course-card--featured:hover {
    transform: translateY(-15px) scale(1.05);
  }
}

.cta--small {
  background-color: #121212;
  padding: 3rem 0;
}
.cta--small .cta__title {
  color: #f5f5f5;
}
.cta--small .cta__text {
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 2rem;
}
.cta--small .cta__content {
  text-align: center;
}

.course-hero {
  background: linear-gradient(to right, #121212 50%, #292929 100%);
  color: #f5f5f5;
  padding: 6rem 0;
}
.course-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .course-hero .container {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
.course-hero__content {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .course-hero__content {
    max-width: 50%;
    padding-right: 3rem;
  }
}
.course-hero__tag {
  display: inline-block;
  color: #121212;
  background-color: #b8860b;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.course-hero__title {
  font-size: 2.5rem;
  color: #f5f5f5;
}
@media (min-width: 768px) {
  .course-hero__title {
    font-size: 3.8rem;
  }
}
.course-hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: rgba(245, 245, 245, 0.7);
  font-weight: 300;
}
.course-hero__details {
  margin-bottom: 2rem;
}
.course-hero__details p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: rgba(245, 245, 245, 0.9);
}
.course-hero__details strong {
  color: #b8860b;
}
.course-hero__image-wrapper {
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .course-hero__image-wrapper {
    margin-top: 0;
    width: 45%;
    filter: drop-shadow(0 0 15px rgba(184, 134, 11, 0.5));
    animation: pulse 4s infinite;
  }
}
.course-hero__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 15px rgba(184, 134, 11, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(184, 134, 11, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(184, 134, 11, 0.4));
  }
}
.benefits {
  padding: 4rem 0;
  text-align: center;
  background-color: #f5f5f5;
}
.benefits__title {
  margin-bottom: 3rem;
  color: #000000;
}
.benefits__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .benefits__grid {
    flex-direction: row;
    justify-content: space-around;
  }
}

.benefit-item {
  padding: 1.5rem;
  background-color: #fcfcfc;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .benefit-item {
    width: 30%;
  }
}
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.benefit-item i {
  font-size: 2.5rem;
  color: #b8860b;
  margin-bottom: 1rem;
  display: block;
}
.benefit-item__title {
  font-size: 1.2rem;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.benefit-item__text {
  font-size: 0.9rem;
  color: #555;
}

.program {
  background-color: #efefef;
  padding: 6rem 0;
}
.program__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #000000;
}
.program__modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .program__modules {
    grid-template-columns: 1fr 1fr;
  }
}

.module-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #b8860b;
  transition: background-color 0.3s ease;
}
.module-card:hover {
  background-color: #fafafa;
}
.module-card__title {
  font-size: 1.4rem;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.module-card__description {
  font-style: italic;
  color: #777;
  margin-bottom: 1rem;
}
.module-card__list {
  list-style: none;
  padding-left: 0;
}
.module-card__list li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
}
.module-card__list li::before {
  content: "•";
  color: #b8860b;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  left: 0;
}

.registration {
  padding: 6rem 0;
  background-color: #121212;
  color: #f5f5f5;
}
.registration__title {
  text-align: center;
  color: #f5f5f5;
  margin-bottom: 3rem;
}
.registration__row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .registration__row {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .registration__info {
    width: 45%;
  }
}
.registration__info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(245, 245, 245, 0.8);
}
.registration__price-note {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem !important;
  font-weight: 700;
  color: #b8860b !important;
}
.registration__image {
  width: 80%;
  max-width: 350px;
  height: auto;
  margin-top: 2rem;
  filter: brightness(0.9) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}
.registration__form {
  background-color: #222222;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1024px) {
  .registration__form {
    width: 50%;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #f5f5f5;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #333;
  color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}
.form-input:focus {
  border-color: #b8860b;
  outline: none;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.3);
}
.form-input::-moz-placeholder {
  color: #888;
}
.form-input::placeholder {
  color: #888;
}

select.form-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path fill="gold" d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  padding-right: 30px;
}
select.form-input option {
  background: #333;
  color: #f5f5f5;
}

.registration__submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.course-hero--roulette {
  background: linear-gradient(to right, #121212 50%, #151515 100%);
}
@media (min-width: 1024px) {
  .course-hero--roulette .course-hero__image-wrapper {
    filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.5));
    animation: none;
  }
}

.focus-points {
  padding: 5rem 0;
  text-align: center;
  background-color: #f8f8f8;
}
.focus-points__title {
  margin-bottom: 3rem;
  color: #000000;
}
.focus-points__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .focus-points__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .focus-points__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.focus-item {
  padding: 1.5rem;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}
.focus-item:hover {
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.1);
}
.focus-item i {
  font-size: 2.5rem;
  color: #b8860b;
  margin-bottom: 1rem;
  display: block;
}
.focus-item__title {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}
.focus-item__text {
  font-size: 0.9rem;
  color: #666;
}

.program--roulette {
  background-color: #f5f5f5;
}
.program--roulette .program__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.program--roulette .program__list {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}
.program--roulette .program__list li {
  font-size: 1.1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed #ddd;
}
.program--roulette .program__list li:last-child {
  border-bottom: none;
}
.program--roulette .program__list li strong {
  color: #b8860b;
  font-weight: 600;
}

.registration--roulette {
  background-color: #1a1a1a;
}
.registration--roulette .registration__info p {
  color: rgba(245, 245, 245, 0.7);
}
.registration--roulette .registration__note {
  font-style: italic;
  font-size: 0.9rem !important;
  margin-top: 2rem;
  color: #aaaaaa !important;
}

.course-hero--blackjack {
  background: linear-gradient(to right, #121212 50%, #001a00 100%);
}
@media (min-width: 1024px) {
  .course-hero--blackjack .course-hero__image-wrapper {
    filter: drop-shadow(0 0 15px rgba(0, 128, 0, 0.7));
    animation: none;
  }
}

.focus-points--blackjack {
  background-color: #f0fbf0;
}
.focus-points--blackjack .focus-item {
  /* Example: using Font Awesome icon */
}
.focus-points--blackjack .focus-item i {
  color: #b8860b;
}
.focus-points--blackjack .focus-item .icon-hand-deal::before {
  content: "\f270";
}
.focus-points--blackjack .focus-item .icon-math-quick::before {
  content: "\f042";
}
.focus-points--blackjack .focus-item .icon-chip-manage::before {
  content: "\f0d1";
}
.focus-points--blackjack .focus-item .icon-baccarat::before {
  content: "\f5b4";
}

.program--blackjack {
  background-color: #e6efe6;
}
.program--blackjack .program__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.program--blackjack .program__list {
  list-style: none;
  padding: 0;
}
.program--blackjack .program__list li {
  border-bottom: 1px dashed #cdebcb;
  margin-bottom: 1rem;
}

.registration--blackjack {
  background-color: #0e0e0e;
}
.registration--blackjack .registration__note {
  color: #b0b0b0 !important;
}

.course-hero--poker {
  background: linear-gradient(to right, #121212 50%, #400000 100%);
}
@media (min-width: 1024px) {
  .course-hero--poker .course-hero__image-wrapper {
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.5));
    animation: none;
  }
}

.focus-points--poker {
  background-color: #f8eded;
}
.focus-points--poker .focus-item {
  /* Example: using Font Awesome icon */
}
.focus-points--poker .focus-item i {
  color: #b8860b;
}
.focus-points--poker .focus-item .icon-pot::before {
  content: "\f0d6";
}
.focus-points--poker .focus-item .icon-rake::before {
  content: "\f5b4";
}
.focus-points--poker .focus-item .icon-tda::before {
  content: "\f05a";
}
.focus-points--poker .focus-item .icon-omaha::before {
  content: "\f57b";
}

.program--poker {
  background-color: #f7e9e9;
}
.program--poker .program__list li {
  border-bottom: 1px dashed #eedada;
}

.registration--poker {
  background-color: #0a0a0a;
}
.registration--poker .registration__note {
  color: #b0b0b0 !important;
}

.page-hero--about {
  background: linear-gradient(180deg, #121212 0%, #222222 100%);
}
.page-hero--about .page-hero__title {
  color: #b8860b;
}

.mission {
  padding: 5rem 0;
  background-color: #f5f5f5;
}
.mission__row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .mission__row {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .mission__content {
    width: 60%;
  }
}
.mission__title {
  color: #000000;
  margin-bottom: 1.5rem;
}
.mission__text {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.mission__vision {
  padding: 2rem;
  background-color: #f9f9f9;
  border-left: 5px solid #b8860b;
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .mission__vision {
    width: 35%;
  }
}
.mission__subtitle {
  color: #b8860b;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.mission__quote {
  margin: 0;
  border-left: none;
  padding: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444;
}
.mission__quote p {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid #b8860b;
}

.team {
  padding: 6rem 0;
  background-color: #efefef;
  text-align: center;
}
.team__title {
  margin-bottom: 0.5rem;
}
.team__description {
  font-style: italic;
  margin-bottom: 3rem;
  color: #555;
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-member {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.team-member__photo {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid #b8860b;
  margin-bottom: 1rem;
}
.team-member__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #b8860b;
  margin-bottom: 0.2rem;
}
.team-member__role {
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.8rem;
}
.team-member__bio {
  font-size: 0.9rem;
  color: #666;
}

.guarantee {
  background: linear-gradient(90deg, #101010 0%, #303030 100%);
  padding: 5rem 0;
  color: #f5f5f5;
  text-align: center;
}
.guarantee__title {
  color: #b8860b;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.guarantee__text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: rgba(245, 245, 245, 0.8);
}

.page-hero--price {
  background: linear-gradient(180deg, #252525 0%, #121212 100%);
}

.pricing-table {
  padding: 5rem 0;
  background-color: #f5f5f5;
  text-align: center;
}
.pricing-table__title {
  margin-bottom: 3rem;
  color: #000000;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding-bottom: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid #efefef;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.price-card__header {
  padding: 1.5rem 1rem 1rem;
}
.price-card__level {
  display: block;
  color: #777;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.price-card__title {
  font-size: 1.4rem;
  color: #000000;
}
.price-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #b8860b;
  margin: 1rem 0 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.price-card__currency {
  font-size: 1.2rem;
  vertical-align: top;
  margin-right: 0.2rem;
  font-weight: 400;
}
.price-card__note {
  font-size: 0.8rem;
  color: #d35400;
  margin: 0.5rem 1rem;
  font-style: italic;
}
.price-card__features {
  list-style: none;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.price-card__features li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  color: #444;
  border-bottom: 1px dashed #f0f0f0;
}
.price-card__features li i {
  margin-right: 0.8rem;
  font-size: 1rem;
  color: #2ecc71;
}
.price-card__features li.disabled {
  color: #a0a0a0;
}
.price-card__features li.disabled i {
  color: #e74c3c;
}
.price-card__btn {
  margin: 0 1.5rem auto;
}
.price-card--featured {
  background-color: #121212;
  color: #f5f5f5;
  border: 4px solid #b8860b;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .price-card--featured {
    transform: scale(1.05);
  }
}
.price-card--featured .price-card__title {
  color: #b8860b;
}
.price-card--featured .price-card__price {
  color: #f5f5f5;
  background-color: #b8860b;
  padding: 1.5rem 0;
  margin-top: 0;
  border-bottom: none;
}
.price-card--featured .price-card__features li {
  color: #f5f5f5;
  border-bottom: 1px dashed #555;
}
.price-card--featured .price-card__features li i {
  color: #b8860b;
}
.price-card--featured .price-card__features li.disabled {
  color: #999;
}
.price-card--featured .price-card__features li.disabled i {
  color: #e74c3c;
}
.price-card--featured .price-card__note {
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0;
}
.price-card--featured .price-card__btn {
  background-color: #b8860b;
  color: #121212;
  border-color: #b8860b;
}
.price-card--featured .price-card__btn:hover {
  background-color: rgb(135.8769230769, 98.9538461538, 8.1230769231);
  color: #121212;
}

.payment-info {
  padding: 5rem 0;
  background-color: #f3f3f3;
}
.payment-info__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #000000;
}
.payment-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .payment-info__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #b8860b;
}
.info-item i {
  font-size: 2rem;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.info-item h3 {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}
.info-item p {
  font-size: 0.95rem;
  color: #555;
}

.cta--border {
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 8px;
}

.page-hero--contact {
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
}

.contact-section {
  padding: 5rem 0;
  background-color: #f5f5f5;
}
.contact-section__row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-section__row {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .contact-info {
    width: 40%;
  }
}
.contact-info__title {
  color: #000000;
  margin-bottom: 2rem;
}

.info-block {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.info-block i {
  font-size: 2rem;
  color: #b8860b;
  margin-bottom: 0.5rem;
  display: block;
}
.info-block h3 {
  font-size: 1.3rem;
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.info-block p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}
.info-block p a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.info-block p a:hover {
  color: #b8860b;
}
.info-block__map-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b8860b;
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .contact-form-wrapper {
    width: 55%;
  }
}
.contact-form-wrapper__title {
  color: #000000;
  margin-bottom: 2rem;
}

.contact-form {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}
.contact-form .form-input:focus {
  border-color: #b8860b;
  outline: none;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.3);
}
.contact-form select.form-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path fill="%23{$color-primary-hex}" d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  padding-right: 30px;
}
.contact-form textarea.form-input {
  resize: vertical;
}
.contact-form .form-group--checkbox {
  display: flex;
  align-items: flex-start;
}
.contact-form .form-group--checkbox input[type=checkbox] {
  width: auto;
  margin-right: 0.8rem;
  margin-top: 0.3rem;
}
.contact-form .form-label {
  font-weight: 400;
  color: #555;
}
.contact-form .form-label--inline {
  display: inline;
  font-size: 0.9rem;
}

.map-location {
  padding: 0 0 5rem;
  background-color: #f5f5f5;
}
.map-location__title {
  text-align: center;
  margin-bottom: 2rem;
  color: #000000;
}
.map-location__embed {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.map-location__embed iframe {
  display: block;
}

.page-hero--legal {
  background: linear-gradient(180deg, #101010 0%, #353535 100%);
}
.page-hero--legal .page-hero__title {
  color: #b8860b;
}

.legal-content {
  padding: 4rem 0 6rem;
  background-color: #f5f5f5;
}

.legal-article {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #333;
}
.legal-article h2 {
  color: #000000;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}
.legal-article h3 {
  color: #b8860b;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.legal-article p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.legal-article p strong {
  font-weight: 700;
  color: #111;
}
.legal-article p a {
  color: #b8860b;
  text-decoration: none;
}
.legal-article p a:hover {
  text-decoration: underline;
}

.legal-list,
.legal-numbered-list {
  padding-left: 20px;
  margin-bottom: 1.5rem;
}
.legal-list li,
.legal-numbered-list li {
  list-style: disc;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #444;
}
.legal-list li::marker,
.legal-numbered-list li::marker {
  color: #b8860b;
  font-weight: bold;
}

.legal-contact-footer {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-left: 4px solid #b8860b;
  border-radius: 4px;
}
.legal-contact-footer p {
  margin: 0.5rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1A1A1A; /* Ciemne tło */
  color: #f5f5f5;
  padding: 1rem 0;
  z-index: 1000; /* Zawsze na wierzchu */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cookie-banner__content {
  max-width: 100%;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    max-width: 70%;
  }
}
.cookie-banner__content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(245, 245, 245, 0.9);
}
.cookie-banner__link {
  color: #b8860b;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner__link:hover {
  color: rgb(232.1230769231, 169.0461538462, 13.8769230769);
}
.cookie-banner__actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.cookie-banner__btn.btn--contained {
  background-color: #b8860b;
  border-color: #b8860b;
  color: #121212;
}
.cookie-banner__btn.btn--contained:hover {
  background-color: rgb(135.8769230769, 98.9538461538, 8.1230769231);
}
.cookie-banner__btn.btn--outlined {
  border: 1px solid rgba(245, 245, 245, 0.5);
  color: #f5f5f5;
  background-color: transparent;
}
.cookie-banner__btn.btn--outlined:hover {
  border-color: #b8860b;
  color: #b8860b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}