*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ekp-color-sunset: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffb800 100%);
  --ekp-color-forest: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
  --ekp-color-reef: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
  --ekp-color-gumleaf: #2a9d8f;
  --ekp-color-wattle: #ffcd00;
  --ekp-color-waratah: #e63946;
  --ekp-color-sand: #f4f1de;
  --ekp-text-primary: #264653;
  --ekp-text-secondary: #2a9d8f;
  --ekp-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --ekp-shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --ekp-radius-curved: 16px;
  --ekp-radius-rounded: 24px;
  --ekp-transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Fira Sans', sans-serif;
  color: var(--ekp-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f8f9fa;
}

.ekp_page__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}

.ekp_header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--ekp-color-sunset);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--ekp-shadow-soft);
  max-width: 1534px;
  margin: 0 auto;
}

.ekp_header__branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ekp_header__logo {
  border-radius: 50%;
  transition: var(--ekp-transition-smooth);
}

.ekp_header__title {
  font-family: 'Prata', serif;
  color: white;
  font-size: 1.8rem;
}

.ekp_header__nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.ekp_header__navigation {
  display: flex;
  gap: 2rem;
}

.ekp_header__nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--ekp-transition-smooth);
}

.ekp_header__nav-link:hover {
  transform: translateY(-2px);
}

.ekp_welcome__section {
  margin-top: -92px;
  background: url('/ekp-engine/ekp-image/ekp-image-bg-1.jpg') center/cover no-repeat;
  padding: 10rem 2rem;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ekp_welcome__content {
  text-align: center;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: var(--ekp-radius-curved);
  backdrop-filter: blur(10px);
}

.ekp_welcome__heading {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--ekp-text-primary);
}

.ekp_welcome__description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--ekp-text-secondary);
}

.ekp_welcome__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.ekp_welcome__feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--ekp-radius-curved);
  text-align: center;
  box-shadow: var(--ekp-shadow-soft);
  transition: var(--ekp-transition-smooth);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ekp_welcome__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ekp-shadow-medium);
}

.ekp_welcome__feature-card i {
  font-size: 3rem;
  color: var(--ekp-color-gumleaf);
  margin-bottom: 1rem;
}

.ekp_welcome__feature-card h3 {
  font-family: 'Prata', serif;
  margin-bottom: 1rem;
  color: var(--ekp-text-primary);
}

.ekp_welcome__feature-card p {
  margin-bottom: 1.5rem;
  color: var(--ekp-text-secondary);
}

.ekp_welcome__cta {
  background: var(--ekp-color-reef);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--ekp-transition-smooth);
}

.ekp_welcome__cta:hover {
  transform: scale(1.05);
}

.ekp_about__section {
  padding: 6rem 2rem;
  background: var(--ekp-color-forest);
  color: white;
}

.ekp_about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ekp_about__image-block img {
  width: 100%;
  height: auto;
  border-radius: var(--ekp-radius-curved);
  box-shadow: var(--ekp-shadow-medium);
}

.ekp_about__text-block {
  padding: 2rem;
}

.ekp_about__heading {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ekp_about__subheading {
  font-family: 'Prata', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.ekp_about__description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.ekp_about__highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ekp_about__highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ekp_about__highlight i {
  color: var(--ekp-color-wattle);
  font-size: 1.2rem;
}

.ekp_about__cta {
  background: var(--ekp-color-wattle);
  color: var(--ekp-text-primary);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: var(--ekp-transition-smooth);
}

.ekp_about__cta:hover {
  transform: translateY(-3px);
}

.ekp_features__section {
  padding: 6rem 2rem;
  background: url('/ekp-engine/ekp-image/ekp-image-bg-2.jpg') center/cover no-repeat;
  position: relative;
}

.ekp_features__content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ekp_features__heading {
  font-family: 'Prata', serif;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--ekp-color-sand);
}

.ekp_features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ekp_features__card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: var(--ekp-radius-curved);
  text-align: center;
  box-shadow: var(--ekp-shadow-soft);
  transition: var(--ekp-transition-smooth);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ekp_features__card:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: var(--ekp-shadow-medium);
}

.ekp_features__card i {
  font-size: 3rem;
  color: var(--ekp-color-gumleaf);
  margin-bottom: 1.5rem;
}

.ekp_features__card h3 {
  font-family: 'Prata', serif;
  margin-bottom: 1rem;
  color: var(--ekp-text-primary);
}

.ekp_features__card p {
  color: var(--ekp-text-secondary);
}

.ekp_games__section {
  padding: 6rem 2rem;
  background: var(--ekp-sand);
}

.ekp_games__heading {
  font-family: 'Prata', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--ekp-text-primary);
}

.ekp_games__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.ekp_games__card {
  background: white;
  border-radius: var(--ekp-radius-curved);
  overflow: hidden;
  box-shadow: var(--ekp-shadow-soft);
  transition: var(--ekp-transition-smooth);
  position: relative;
}

.ekp_games__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--ekp-shadow-medium);
}

.ekp_games__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--ekp-color-waratah);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.ekp_games__card img {
  width: 100%;
  height: auto;
  max-height: 415px;
  object-fit: cover;
  transition: var(--ekp-transition-smooth);
}

.ekp_games__card:hover img {
  transform: scale(1.05);
}

.ekp_games__card h3 {
  font-family: 'Prata', serif;
  padding: 1.5rem;
  text-align: center;
  color: var(--ekp-text-primary);
}

.ekp_games__link {
  display: block;
  text-align: center;
  background: var(--ekp-color-reef);
  color: white;
  padding: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--ekp-transition-smooth);
}

.ekp_games__link:hover {
  background: var(--ekp-color-gumleaf);
}

.ekp_premium__section {
  padding: 6rem 2rem;
  background: url('/ekp-engine/ekp-image/ekp-image-bg-3.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
}

.ekp_premium__content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(38, 70, 83, 0.9);
  padding: 4rem;
  border-radius: var(--ekp-radius-curved);
  backdrop-filter: blur(5px);
}

.ekp_premium__heading {
  font-family: 'Prata', serif;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.ekp_premium__description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.ekp_premium__cta {
  background: var(--ekp-color-wattle);
  color: var(--ekp-text-primary);
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--ekp-transition-smooth);
  display: inline-block;
}

.ekp_premium__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ekp_responsible__section {
  padding: 6rem 2rem;
  background: var(--ekp-color-sand);
}

.ekp_responsible__content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.ekp_responsible__heading {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--ekp-text-primary);
}

.ekp_responsible__description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  color: var(--ekp-text-secondary);
}

.ekp_responsible__description a {
  color: var(--ekp-color-gumleaf);
  text-decoration: none;
}

.ekp_responsible__description a:hover {
  text-decoration: underline;
}

.ekp_responsible__partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.ekp_responsible__partners a,
.ekp_responsible__partners img {
  transition: var(--ekp-transition-smooth);
}

.ekp_responsible__partners a:hover {
  transform: scale(1.05);
}

.ekp_faq__section {
  padding: 6rem 2rem;
  background: white;
}

.ekp_faq__heading {
  font-family: 'Prata', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--ekp-text-primary);
}

.ekp_faq__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.ekp_faq__category {
  margin-bottom: 3rem;
}

.ekp_faq__subheading {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--ekp-text-primary);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ekp-color-gumleaf);
}

.ekp_faq__item {
  margin-bottom: 1.5rem;
  border-radius: var(--ekp-radius-curved);
  overflow: hidden;
  box-shadow: var(--ekp-shadow-soft);
}

.ekp_faq__question {
  width: 100%;
  padding: 1.5rem;
  background: var(--ekp-color-sand);
  border: none;
  text-align: left;
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--ekp-transition-smooth);
}

.ekp_faq__question:hover {
  background: var(--ekp-color-gumleaf);
  color: white;
}

.ekp_faq__question i {
  transition: var(--ekp-transition-smooth);
}

.ekp_faq__answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: var(--ekp-transition-smooth);
}

.ekp_faq__answer p {
  padding: 1.5rem;
}

.ekp_faq__item.active .ekp_faq__answer {
  max-height: 300px;
  padding: 0;
}

.ekp_faq__item.active .ekp_faq__question i {
  transform: rotate(45deg);
}

.ekp_faq__contact {
  display: block;
  text-align: center;
  margin-top: 4rem;
  background: var(--ekp-color-reef);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  transition: var(--ekp-transition-smooth);
}

.ekp_faq__contact:hover {
  transform: scale(1.05);
}

.ekp_testimonials__section {
  padding: 6rem 2rem;
  background: var(--ekp-color-forest);
  color: white;
}

.ekp_testimonials__heading {
  font-family: 'Prata', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 4rem;
}

.ekp_testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ekp_testimonials__card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--ekp-radius-curved);
  backdrop-filter: blur(10px);
  transition: var(--ekp-transition-smooth);
  min-height: 320px;
}

.ekp_testimonials__card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.ekp_testimonials__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.ekp_testimonials__name {
  font-family: 'Prata', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ekp_testimonials__text {
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.ekp_testimonials__rating {
  color: var(--ekp-color-wattle);
  margin-bottom: 1rem;
}

.ekp_testimonials__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.8;
}

.ekp_footer__container {
  background: var(--ekp-text-primary);
  color: white;
  padding: 3rem 2rem 1rem;
}

.ekp_footer__primary {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ekp_footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Prata', serif;
  font-size: 1.5rem;
}

.ekp_footer__brand img {
  border-radius: 50%;
}

.ekp_footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.ekp_footer__nav a {
  color: white;
  text-decoration: none;
  transition: var(--ekp-transition-smooth);
}

.ekp_footer__nav a:hover {
  color: var(--ekp-color-wattle);
}

.ekp_footer__secondary {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.9rem;
}

.ekp_footer__contact a {
  color: white;
  text-decoration: none;
}

.ekp_footer__contact a:hover {
  text-decoration: underline;
}

.ekp_modal__cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ekp-text-primary);
  color: white;
  padding: 1.5rem;
  z-index: 1001;
  display: none;
}

.ekp_cookies__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ekp_cookies__content p {
  flex: 1;
  margin-right: 2rem;
}

.ekp_cookies__content a {
  color: var(--ekp-color-wattle);
  text-decoration: none;
}

.ekp_cookies__content a:hover {
  text-decoration: underline;
}

.ekp_cookies__accept {
  background: var(--ekp-color-gumleaf);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--ekp-transition-smooth);
}

.ekp_cookies__accept:hover {
  background: var(--ekp-color-wattle);
}

.ekp_modal__age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}

.ekp_age__content {
  background: white;
  padding: 3rem;
  border-radius: var(--ekp-radius-curved);
  text-align: center;
  max-width: 600px;
  width: 90%;
  color: var(--ekp-text-primary);
}

.ekp_age__content h2 {
  font-family: 'Prata', serif;
  margin-bottom: 1.5rem;
  color: var(--ekp-text-primary);
}

.ekp_age__content p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ekp_age__resources {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ekp_age__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.ekp_age__confirm {
  background: var(--ekp-color-gumleaf);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--ekp-transition-smooth);
}

.ekp_age__confirm:hover {
  background: var(--ekp-color-wattle);
}

.ekp_age__deny {
  background: transparent;
  color: var(--ekp-text-primary);
  border: 1px solid var(--ekp-text-primary);
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--ekp-transition-smooth);
}

.ekp_age__deny:hover {
  background: var(--ekp-text-primary);
  color: white;
}

.ekp_modal__subscribe {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2.5rem;
  border-radius: var(--ekp-radius-curved);
  z-index: 1003;
  box-shadow: var(--ekp-shadow-medium);
  display: none;
  max-width: 500px;
  width: 90%;
}

.ekp_subscribe__content {
  position: relative;
  text-align: center;
}

.ekp_subscribe__close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--ekp-color-waratah);
  color: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ekp_subscribe__content h2 {
  font-family: 'Prata', serif;
  margin-bottom: 1.5rem;
  color: var(--ekp-text-primary);
}

.ekp_subscribe__content p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ekp_subscribe__link {
  background: var(--ekp-color-reef);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: var(--ekp-transition-smooth);
}

.ekp_subscribe__link:hover {
  transform: scale(1.05);
}

.ekp_modal__contacts {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2.5rem;
  border-radius: var(--ekp-radius-curved);
  z-index: 1003;
  box-shadow: var(--ekp-shadow-medium);
  display: none;
  max-width: 500px;
  width: 90%;
}

.ekp_contacts__content {
  position: relative;
  text-align: center;
}

.ekp_contacts__close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--ekp-color-waratah);
  color: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ekp_contacts__content h2 {
  font-family: 'Prata', serif;
  margin-bottom: 1.5rem;
  color: var(--ekp-text-primary);
}

.ekp_contacts__content p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ekp_contacts__email {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--ekp-color-gumleaf);
  font-weight: 500;
  text-decoration: none;
}

.ekp_contacts__email:hover {
  text-decoration: underline;
}

.ekp_contacts__form-link {
  background: var(--ekp-color-reef);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: var(--ekp-transition-smooth);
}

.ekp_contacts__form-link:hover {
  transform: scale(1.05);
}

.ekp_scroll__top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--ekp-color-reef);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: var(--ekp-transition-smooth);
  opacity: 0;
  visibility: hidden;
}

.ekp_scroll__top.visible {
  opacity: 1;
  visibility: visible;
}

.ekp_scroll__top:hover {
  background: var(--ekp-color-gumleaf);
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .ekp_welcome__features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ekp_about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ekp_testimonials__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .ekp_header__container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .ekp_header__nav-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
  }
  
  .ekp_header__navigation {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 1rem;
  }
  
  .ekp_header__navigation.active {
    display: flex;
  }
  
  .ekp_header__nav-link {
    justify-content: center;
    padding: 0.5rem;
  }
  
  .ekp_welcome__section {
    padding: 9rem 1rem;
    min-height: auto;
  }
  
  .ekp_welcome__content {
    padding: 2rem;
  }
  
  .ekp_welcome__heading {
    font-size: 2.2rem;
  }
  
  .ekp_features__grid {
    grid-template-columns: 1fr;
  }
  
  .ekp_games__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ekp_faq__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ekp_footer__primary {
    flex-direction: column;
    text-align: center;
  }
  
  .ekp_footer__nav {
    justify-content: center;
  }
  
  .ekp_footer__secondary {
    flex-direction: column;
    text-align: center;
  }
  
  .ekp_cookies__content {
    flex-direction: column;
    text-align: center;
  }
  
  .ekp_cookies__content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .ekp_age__actions {
    flex-direction: column;
  }
  
  .ekp_age__resources {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .ekp_welcome__heading {
    font-size: 1.8rem;
  }
  
  .ekp_about__heading {
    font-size: 2rem;
  }
  
  .ekp_features__heading,
  .ekp_games__heading,
  .ekp_premium__heading,
  .ekp_responsible__heading,
  .ekp_faq__heading,
  .ekp_testimonials__heading {
    font-size: 2rem;
  }
  
  .ekp_premium__content {
    padding: 2rem;
  }
  
  .ekp_testimonials__card {
    padding: 1.5rem;
  }
  
  .ekp_modal__subscribe,
  .ekp_modal__contacts {
    padding: 1.5rem;
  }
}

@media (max-width: 320px) {
  .ekp_header__title {
    font-size: 1.5rem;
  }
  
  .ekp_welcome__feature-card {
    padding: 1.5rem;
  }
  
  .ekp_features__card {
    padding: 1.5rem;
  }
  
  .ekp_faq__question {
    padding: 1rem;
    font-size: 1rem;
  }
}

.ekp_pg-privacy__container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.ekp_pg-privacy__intro {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.ekp_pg-privacy__intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2a9d8f, #264653);
}

.ekp_pg-privacy__heading {
  font-family: 'Prata', serif;
  font-size: 2.8rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-privacy__subtext {
  font-size: 1.2rem;
  color: #2a9d8f;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.ekp_pg-privacy__icon {
  font-size: 4rem;
  color: #2a9d8f;
  margin-top: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ekp_pg-privacy__content {
  display: grid;
  gap: 2rem;
}

.ekp_pg-privacy__point {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ekp_pg-privacy__point:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ekp_pg-privacy__point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #2a9d8f, #264653);
}

.ekp_pg-privacy__point-icon {
  font-size: 2.5rem;
  color: #2a9d8f;
  margin-bottom: 1.5rem;
  display: block;
}

.ekp_pg-privacy__point-title {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-privacy__point-text {
  color: #495057;
  line-height: 1.7;
  font-size: 1.1rem;
}

.ekp_pg-privacy__point-text a {
  color: #2a9d8f;
  text-decoration: none;
  font-weight: 500;
}

.ekp_pg-privacy__point-text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ekp_pg-privacy__heading {
    font-size: 2.2rem;
  }
  
  .ekp_pg-privacy__subtext {
    font-size: 1.1rem;
  }
  
  .ekp_pg-privacy__point {
    padding: 2rem 1.5rem;
  }
  
  .ekp_pg-privacy__point-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ekp_pg-privacy__heading {
    font-size: 1.8rem;
  }
  
  .ekp_pg-privacy__icon {
    font-size: 3rem;
  }
  
  .ekp_pg-privacy__point {
    padding: 1.5rem;
  }

  .ekp_pg-privacy__point-text a {
    font-size: 16px;
  }
}

.ekp_pg-terms__container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.ekp_pg-terms__hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
  color: white;
  border-radius: 16px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.ekp_pg-terms__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.ekp_pg-terms__heading {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ekp_pg-terms__subheading {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ekp_pg-terms__hero-icon {
  font-size: 5rem;
  margin-top: 2rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.ekp_pg-terms__content {
  display: grid;
  gap: 2.5rem;
}

.ekp_pg-terms__section {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ekp_pg-terms__section:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ekp_pg-terms__section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2a9d8f, #264653);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ekp_pg-terms__section:hover::after {
  transform: scaleX(1);
}

.ekp_pg-terms__icon {
  font-size: 3rem;
  color: #2a9d8f;
  margin-bottom: 1.5rem;
  display: block;
}

.ekp_pg-terms__title {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #264653;
  margin-bottom: 1.5rem;
}

.ekp_pg-terms__text {
  color: #495057;
  line-height: 1.8;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .ekp_pg-terms__heading {
    font-size: 2.5rem;
  }
  
  .ekp_pg-terms__subheading {
    font-size: 1.1rem;
  }
  
  .ekp_pg-terms__section {
    padding: 2.5rem 2rem;
  }
  
  .ekp_pg-terms__title {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .ekp_pg-terms__heading {
    font-size: 2rem;
  }
  
  .ekp_pg-terms__hero {
    padding: 3rem 1.5rem;
  }
  
  .ekp_pg-terms__hero-icon {
    font-size: 4rem;
  }
  
  .ekp_pg-terms__section {
    padding: 2rem 1.5rem;
  }
  
  .ekp_pg-terms__title {
    font-size: 1.5rem;
  }
  
  .ekp_pg-terms__icon {
    font-size: 2.5rem;
  }
}

.ekp_pg-cookies__container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.ekp_pg-cookies__header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffb800 100%);
  color: white;
  border-radius: 20px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.ekp_pg-cookies__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.ekp_pg-cookies__main-title {
  font-family: 'Prata', serif;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.ekp_pg-cookies__intro-text {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ekp_pg-cookies__icon-wrapper {
  position: relative;
  z-index: 1;
}

.ekp_pg-cookies__main-icon {
  font-size: 5rem;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ekp_pg-cookies__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.ekp_pg-cookies__point {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ekp_pg-cookies__point:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ekp_pg-cookies__point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 50%, rgba(255, 184, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ekp_pg-cookies__point:hover::before {
  opacity: 1;
}

.ekp_pg-cookies__point-icon {
  font-size: 2.8rem;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.ekp_pg-cookies__point:hover .ekp_pg-cookies__point-icon {
  transform: scale(1.2);
}

.ekp_pg-cookies__point-title {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  color: #264653;
  margin-bottom: 1.2rem;
}

.ekp_pg-cookies__point-description {
  color: #495057;
  line-height: 1.7;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .ekp_pg-cookies__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ekp_pg-cookies__main-title {
    font-size: 2.5rem;
  }
  
  .ekp_pg-cookies__intro-text {
    font-size: 1.1rem;
  }
  
  .ekp_pg-cookies__point {
    padding: 2rem;
  }
  
  .ekp_pg-cookies__point-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .ekp_pg-cookies__main-title {
    font-size: 2rem;
  }
  
  .ekp_pg-cookies__header {
    padding: 3rem 1.5rem;
  }
  
  .ekp_pg-cookies__main-icon {
    font-size: 4rem;
  }
  
  .ekp_pg-cookies__point {
    padding: 1.5rem;
  }
  
  .ekp_pg-cookies__point-title {
    font-size: 1.4rem;
  }
  
  .ekp_pg-cookies__point-icon {
    font-size: 2.5rem;
  }
}

.ekp_pg-responsible__container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.ekp_pg-responsible__banner {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
  color: white;
  border-radius: 20px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.ekp_pg-responsible__banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.ekp_pg-responsible__title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.ekp_pg-responsible__subtitle {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ekp_pg-responsible__banner-icon {
  font-size: 6rem;
  position: relative;
  z-index: 1;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.ekp_pg-responsible__guidelines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.ekp_pg-responsible__guideline {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ekp_pg-responsible__guideline:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ekp_pg-responsible__guideline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2a9d8f, #264653);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ekp_pg-responsible__guideline:hover::before {
  transform: scaleX(1);
}

.ekp_pg-responsible__guideline-icon {
  font-size: 3rem;
  color: #2a9d8f;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.ekp_pg-responsible__guideline:hover .ekp_pg-responsible__guideline-icon {
  transform: rotate(10deg) scale(1.2);
}

.ekp_pg-responsible__guideline-heading {
  font-family: 'Prata', serif;
  font-size: 1.8rem;
  color: #264653;
  margin-bottom: 1.2rem;
}

.ekp_pg-responsible__guideline-text {
  color: #495057;
  line-height: 1.7;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .ekp_pg-responsible__guidelines {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .ekp_pg-responsible__title {
    font-size: 2.8rem;
  }
  
  .ekp_pg-responsible__subtitle {
    font-size: 1.2rem;
  }
  
  .ekp_pg-responsible__banner {
    padding: 4rem 1.5rem;
  }
  
  .ekp_pg-responsible__banner-icon {
    font-size: 5rem;
  }
  
  .ekp_pg-responsible__guideline {
    padding: 2rem;
  }
  
  .ekp_pg-responsible__guideline-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .ekp_pg-responsible__title {
    font-size: 2.2rem;
  }
  
  .ekp_pg-responsible__subtitle {
    font-size: 1.1rem;
  }
  
  .ekp_pg-responsible__banner-icon {
    font-size: 4rem;
  }
  
  .ekp_pg-responsible__guidelines {
    grid-template-columns: 1fr;
  }
  
  .ekp_pg-responsible__guideline {
    padding: 1.5rem;
  }
  
  .ekp_pg-responsible__guideline-heading {
    font-size: 1.4rem;
  }
  
  .ekp_pg-responsible__guideline-icon {
    font-size: 2.5rem;
  }
}

.ekp_pg-404__container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ekp_pg-404__content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.ekp_pg-404__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ffb800);
}

.ekp_pg-404__icon-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.ekp_pg-404__icon {
  font-size: 4rem;
  color: #ff6b35;
  margin-right: 1rem;
  animation: search 3s ease-in-out infinite;
}

@keyframes search {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}

.ekp_pg-404__number {
  font-family: 'Prata', serif;
  font-size: 5rem;
  font-weight: bold;
  color: #264653;
  margin: 0 0.5rem;
  position: relative;
  animation: bounce 2s ease-in-out infinite;
}

.ekp_pg-404__number:nth-child(2) {
  animation-delay: 0.2s;
}

.ekp_pg-404__number:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.ekp_pg-404__title {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  color: #264653;
  margin-bottom: 1.5rem;
}

.ekp_pg-404__message {
  font-size: 1.2rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.ekp_pg-404__actions {
  margin-bottom: 2rem;
}

.ekp_pg-404__home-link {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.ekp_pg-404__home-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

.ekp_pg-404__home-link i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.ekp_pg-404__koala {
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.ekp_pg-404__koala-icon {
  font-size: 2rem;
  color: #2a9d8f;
  margin-bottom: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.ekp_pg-404__koala-text {
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .ekp_pg-404__content {
    padding: 2rem;
  }
  
  .ekp_pg-404__icon {
    font-size: 3rem;
  }
  
  .ekp_pg-404__number {
    font-size: 4rem;
  }
  
  .ekp_pg-404__title {
    font-size: 2rem;
  }
  
  .ekp_pg-404__message {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .ekp_pg-404__content {
    padding: 1.5rem;
  }
  
  .ekp_pg-404__icon-group {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .ekp_pg-404__icon {
    font-size: 2.5rem;
    margin-right: 0;
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .ekp_pg-404__number {
    font-size: 3rem;
    margin: 0 0.3rem;
  }
  
  .ekp_pg-404__title {
    font-size: 1.8rem;
  }
  
  .ekp_pg-404__message {
    font-size: 1rem;
  }
  
  .ekp_pg-404__home-link {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

.ekp_pg-contact__container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.ekp_pg-contact__intro {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
  color: white;
  border-radius: 16px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.ekp_pg-contact__intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.ekp_pg-contact__main-heading {
  font-family: 'Prata', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.ekp_pg-contact__intro-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ekp_pg-contact__intro-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

.ekp_pg-contact__form-section {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.ekp_pg-contact__form-heading {
  font-family: 'Prata', serif;
  font-size: 2.2rem;
  color: #264653;
  margin-bottom: 1rem;
  text-align: center;
}

.ekp_pg-contact__form-subtext {
  color: #6c757d;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.ekp_pg-contact__form {
  max-width: 600px;
  margin: 0 auto;
}

.ekp_pg-contact__input-group {
  margin-bottom: 2rem;
  position: relative;
}

.ekp_pg-contact__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #264653;
}

.ekp_pg-contact__input,
.ekp_pg-contact__textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Fira Sans', sans-serif;
}

.ekp_pg-contact__input:focus,
.ekp_pg-contact__textarea:focus {
  outline: none;
  border-color: #2a9d8f;
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
}

.ekp_pg-contact__input:invalid:not(:focus):not(:placeholder-shown),
.ekp_pg-contact__textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #e63946;
}

.ekp_pg-contact__input:valid:not(:focus):not(:placeholder-shown),
.ekp_pg-contact__textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: #2a9d8f;
}

.ekp_pg-contact__error {
  color: #e63946;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  display: none;
}

.ekp_pg-contact__hint {
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.ekp_pg-contact__input:focus ~ .ekp_pg-contact__hint,
.ekp_pg-contact__textarea:focus ~ .ekp_pg-contact__hint {
  max-height: 50px;
  opacity: 1;
}

.ekp_pg-contact__checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

.ekp_pg-contact__checkbox {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #2a9d8f;
}

.ekp_pg-contact__checkbox-label {
  color: #495057;
  line-height: 1.5;
  flex: 1;
}

.ekp_pg-contact__link {
  color: #2a9d8f;
  text-decoration: none;
  font-weight: 500;
}

.ekp_pg-contact__link:hover {
  text-decoration: underline;
}

.ekp_pg-contact__checkbox:focus ~ .ekp_pg-contact__checkbox-label ~ .ekp_pg-contact__hint {
  max-height: 50px;
  opacity: 1;
}

.ekp_pg-contact__submit {
  background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

.ekp_pg-contact__submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

.ekp_pg-contact__submit:disabled {
  background: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
}

.ekp_pg-contact__submit i {
  margin-right: 0.5rem;
}

.ekp_pg-contact__benefits {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
}

.ekp_pg-contact__benefits-heading {
  font-family: 'Prata', serif;
  font-size: 2.2rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-contact__benefits-text {
  color: #6c757d;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ekp_pg-contact__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.ekp_pg-contact__benefit {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ekp_pg-contact__benefit:hover {
  transform: translateY(-5px);
}

.ekp_pg-contact__benefit-icon {
  font-size: 2.5rem;
  color: #2a9d8f;
  margin-bottom: 1rem;
}

.ekp_pg-contact__benefit-title {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-contact__benefit-description {
  color: #495057;
  line-height: 1.6;
}

.ekp_pg-contact__success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ekp_pg-contact__success.active {
  opacity: 1;
  visibility: visible;
}

.ekp_pg-contact__success-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.ekp_pg-contact__success.active .ekp_pg-contact__success-content {
  transform: scale(1);
}

.ekp_pg-contact__success-icon {
  font-size: 4rem;
  color: #2a9d8f;
  margin-bottom: 1.5rem;
  animation: success 0.6s ease;
}

@keyframes success {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.ekp_pg-contact__success-title {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-contact__success-text {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ekp_pg-contact__success-button {
  background: #2a9d8f;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ekp_pg-contact__success-button:hover {
  background: #264653;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ekp_pg-contact__main-heading {
    font-size: 2.5rem;
  }
  
  .ekp_pg-contact__form-section {
    padding: 2rem;
  }
  
  .ekp_pg-contact__form-heading {
    font-size: 1.8rem;
  }
  
  .ekp_pg-contact__benefits {
    padding: 2rem 1.5rem;
  }
  
  .ekp_pg-contact__benefits-heading {
    font-size: 1.8rem;
  }
  
  .ekp_pg-contact__benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .ekp_pg-contact__success-content {
    padding: 2rem;
  }
  
  .ekp_pg-contact__success-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .ekp_pg-contact__main-heading {
    font-size: 2rem;
  }
  
  .ekp_pg-contact__intro {
    padding: 2rem 1.5rem;
  }
  
  .ekp_pg-contact__intro-icon {
    font-size: 3rem;
  }
  
  .ekp_pg-contact__form-section {
    padding: 1.5rem;
  }
  
  .ekp_pg-contact__checkbox-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ekp_pg-contact__checkbox {
    margin-bottom: 0.5rem;
  }
  
  .ekp_pg-contact__benefit {
    padding: 1.5rem;
  }
  
  .ekp_pg-contact__success-content {
    padding: 1.5rem;
  }
  
  .ekp_pg-contact__success-icon {
    font-size: 3rem;
  }
  
  .ekp_pg-contact__success-title {
    font-size: 1.5rem;
  }
}

.ekp_pg-subscribe__container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.ekp_pg-subscribe__hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffb800 100%);
  color: white;
  border-radius: 20px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.ekp_pg-subscribe__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.ekp_pg-subscribe__main-title {
  font-family: 'Prata', serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.ekp_pg-subscribe__hero-text {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ekp_pg-subscribe__hero-icon {
  font-size: 5rem;
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ekp_pg-subscribe__form-section {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  text-align: center;
}

.ekp_pg-subscribe__form-title {
  font-family: 'Prata', serif;
  font-size: 2.2rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-subscribe__form-description {
  color: #6c757d;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.ekp_pg-subscribe__form {
  max-width: 500px;
  margin: 0 auto;
}

.ekp_pg-subscribe__input-group {
  margin-bottom: 2rem;
  text-align: left;
  position: relative;
}

.ekp_pg-subscribe__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #264653;
}

.ekp_pg-subscribe__input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ekp_pg-subscribe__input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.ekp_pg-subscribe__input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #e63946;
}

.ekp_pg-subscribe__input:valid:not(:focus):not(:placeholder-shown) {
  border-color: #2a9d8f;
}

.ekp_pg-subscribe__error {
  color: #e63946;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  display: none;
}



.ekp_pg-subscribe__input:focus ~ .ekp_pg-subscribe__hint {
  max-height: 50px;
  opacity: 1;
}

.ekp_pg-subscribe__checkbox-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
  text-align: left;
  position: relative;
}

.ekp_pg-subscribe__checkbox {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #ff6b35;
}

.ekp_pg-subscribe__checkbox-label {
  width: 100%;
  min-width: 120px;
  color: #495057;
  line-height: 1.5;
  flex: 1;
}

.ekp_pg-subscribe__link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
}

.ekp_pg-subscribe__link:hover {
  text-decoration: underline;
}

.ekp_pg-subscribe__hint {
  color: #e70000;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.ekp_pg-subscribe__checkbox:focus ~ .ekp_pg-subscribe__checkbox-label ~ .ekp_pg-subscribe__hint {
  max-height: 50px;
  opacity: 1;
}

.ekp_pg-subscribe__submit {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.ekp_pg-subscribe__submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.ekp_pg-subscribe__submit:disabled {
  background: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
}

.ekp_pg-subscribe__submit i {
  margin-right: 0.5rem;
}

.ekp_pg-subscribe__benefits {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
}

.ekp_pg-subscribe__benefits-title {
  font-family: 'Prata', serif;
  font-size: 2.2rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-subscribe__benefits-intro {
  color: #6c757d;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ekp_pg-subscribe__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.ekp_pg-subscribe__benefit {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ekp_pg-subscribe__benefit:hover {
  transform: translateY(-5px);
}

.ekp_pg-subscribe__benefit-icon {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.ekp_pg-subscribe__benefit-heading {
  font-family: 'Prata', serif;
  font-size: 1.4rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-subscribe__benefit-text {
  color: #495057;
  line-height: 1.6;
}

.ekp_pg-subscribe__success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ekp_pg-subscribe__success.active {
  opacity: 1;
  visibility: visible;
}

.ekp_pg-subscribe__success-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.ekp_pg-subscribe__success.active .ekp_pg-subscribe__success-content {
  transform: scale(1);
}

.ekp_pg-subscribe__success-icon {
  font-size: 4rem;
  color: #2a9d8f;
  margin-bottom: 1.5rem;
  animation: success 0.6s ease;
}

.ekp_pg-subscribe__success-title {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #264653;
  margin-bottom: 1rem;
}

.ekp_pg-subscribe__success-text {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ekp_pg-subscribe__success-button {
  background: #2a9d8f;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 1rem;
}

.ekp_pg-subscribe__success-button:hover {
  background: #264653;
  transform: translateY(-2px);
}

.ekp_pg-subscribe__success-close {
  background: #6c757d;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ekp_pg-subscribe__success-close:hover {
  background: #495057;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ekp_pg-subscribe__main-title {
    font-size: 2.8rem;
  }
  
  .ekp_pg-subscribe__hero-text {
    font-size: 1.1rem;
  }
  
  .ekp_pg-subscribe__form-section {
    padding: 2rem;
  }
  
  .ekp_pg-subscribe__form-title {
    font-size: 1.8rem;
  }
  
  .ekp_pg-subscribe__benefits {
    padding: 2rem 1.5rem;
  }
  
  .ekp_pg-subscribe__benefits-title {
    font-size: 1.8rem;
  }
  
  .ekp_pg-subscribe__benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .ekp_pg-subscribe__success-content {
    padding: 2rem;
  }
  
  .ekp_pg-subscribe__success-title {
    font-size: 1.8rem;
  }
  
  .ekp_pg-subscribe__success-button,
  .ekp_pg-subscribe__success-close {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .ekp_pg-subscribe__main-title {
    font-size: 2.2rem;
  }
  
  .ekp_pg-subscribe__hero {
    padding: 3rem 1.5rem;
  }
  
  .ekp_pg-subscribe__hero-icon {
    font-size: 4rem;
  }
  
  .ekp_pg-subscribe__form-section {
    padding: 1.5rem;
  }
  
  .ekp_pg-subscribe__checkbox-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ekp_pg-subscribe__checkbox {
    margin-bottom: 0.5rem;
  }
  
  .ekp_pg-subscribe__benefit {
    padding: 1.5rem;
  }
  
  .ekp_pg-subscribe__success-content {
    padding: 1.5rem;
  }
  
  .ekp_pg-subscribe__success-icon {
    font-size: 3rem;
  }
  
  .ekp_pg-subscribe__success-title {
    font-size: 1.5rem;
  }
}