@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap&subset=latin,cyrillic");

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

:root {
  --zf_radial-gradient: radial-gradient(circle at top right, #ff2d75, #ff8a00, #42a5f5);
  --zf_conic-gradient: conic-gradient(from 45deg, #ff2d75, #ff8a00, #42a5f5, #9c27b0, #ff2d75);
  --zf_linear-vibrant: linear-gradient(135deg, #ff2d75 0%, #ff8a00 50%, #42a5f5 100%);
  --zf_header-height: 6rem;
  --zf_container-max: 1360px;
  --zf_transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --zf_shadow-glow: 0 0 20px rgba(255, 45, 117, 0.3);
  --zf_shadow-float: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Vollkorn', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  min-height: 4.2rem;
}

h2 {
  font-size: 2.8rem;
  min-height: 3.4rem;
}

h3 {
  font-size: 2rem;
  min-height: 2.4rem;
}

h4 {
  font-size: 1.5rem;
  min-height: 1.8rem;
}

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

.zf_age__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.zf_age__container {
  background: var(--zf_radial-gradient);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  box-shadow: var(--zf_shadow-glow);
  animation: zf_pulse 2s infinite;
}

.zf_age__icon {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
}

.zf_age__title {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.zf_age__text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.zf_age__partners a {
  transition: var(--zf_transition-smooth);
}

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

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

.zf_age__confirm, .zf_age__decline {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--zf_transition-smooth);
  font-size: 1rem;
}

.zf_age__confirm {
  background: white;
  color: #ff2d75;
}

.zf_age__decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.zf_age__confirm:hover {
  transform: translateY(-3px);
  box-shadow: var(--zf_shadow-float);
}

.zf_age__decline:hover {
  background: white;
  color: #ff2d75;
}

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

.zf_cookies__banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--zf_conic-gradient);
  padding: 1.5rem;
  z-index: 9995;
  display: none;
  justify-content: center;
  align-items: center;
}

.zf_cookies__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--zf_container-max);
  width: 100%;
  justify-content: space-between;
}

.zf_cookies__text {
  color: white;
  flex: 1;
}

.zf_cookies__text a {
  color: white;
  text-decoration: underline;
}

.zf_cookies__accept {
  background: white;
  color: #ff2d75;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--zf_transition-smooth);
  white-space: nowrap;
}

.zf_cookies__accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--zf_shadow-float);
}

.zf_header__container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  height: var(--zf_header-height);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.zf_header__inner {
  max-width: var(--zf_container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 100%;
}

.zf_header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff2d75;
}

.zf_header__logo i {
  font-size: 2rem;
}

.zf_header__navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}

.zf_header__link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: var(--zf_transition-smooth);
  position: relative;
}

.zf_header__link:hover {
  color: #ff2d75;
}

.zf_header__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--zf_linear-vibrant);
  transition: var(--zf_transition-smooth);
}

.zf_header__link:hover::after {
  width: 100%;
}

.zf_contact__trigger {
  background: var(--zf_linear-vibrant);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--zf_transition-smooth);
}

.zf_contact__trigger:hover {
  transform: translateY(-2px);
  box-shadow: var(--zf_shadow-float);
}

.zf_header__mobiletoggle {
  display: none;
  font-size: 1.8rem;
  color: #ff2d75;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .zf_header__inner {
    padding: 0 1.5rem;
  }
  
  .zf_header__navigation {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .zf_header__navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--zf_transition-smooth);
    z-index: 999;
  }
  
  .zf_header__navigation.zf_mobile__active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .zf_header__mobiletoggle {
    display: flex;
    cursor: pointer;
  }
  
  .zf_header__inner {
    justify-content: center;
    flex-direction: column;
    padding-top: 1rem;
  }
  
  .zf_header__logo {
    order: 2;
    margin-top: 0.5rem;
  }
  
  .zf_header__mobiletoggle {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
  }
}

@media (max-width: 480px) {
  .zf_header__inner {
    padding: 0 1rem;
  }
  
  .zf_header__logo {
    font-size: 1.3rem;
  }
  
  .zf_header__logo i {
    font-size: 1.7rem;
  }

  .zf_cookies__content {
    flex-direction: column;
  }
}

.zf_welcome__section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zf_radial-gradient);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.zf_welcome__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/zf-core/zf-images/zf-back-img-1.webp') no-repeat center/cover;
  opacity: 0.1;
}

.zf_welcome__content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.zf_welcome__title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 4rem;
  animation: zf_slideUp 1s ease-out;
}

.zf_welcome__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 3rem;
  animation: zf_slideUp 1s ease-out 0.2s both;
}

.zf_welcome__highlights {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: zf_slideUp 1s ease-out 0.4s both;
}

.zf_welcome__card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  transition: var(--zf_transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zf_welcome__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
}

.zf_welcome__card i {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  display: block;
}

.zf_welcome__card p {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.zf_welcome__card a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--zf_transition-smooth);
}

.zf_welcome__card a:hover {
  gap: 1rem;
}

@keyframes zf_slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .zf_welcome__title {
    font-size: 3.2rem;
  }
  
  .zf_welcome__description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .zf_welcome__section {
    padding: 7rem 1rem 3rem;
  }
  
  .zf_welcome__title {
    font-size: 2.8rem;
  }
  
  .zf_welcome__description {
    font-size: 1.1rem;
  }
  
  .zf_welcome__highlights {
    gap: 1.5rem;
  }
  
  .zf_welcome__card {
    min-width: 160px;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .zf_welcome__title {
    font-size: 2.2rem;
  }
  
  .zf_welcome__description {
    font-size: 1rem;
  }
  
  .zf_welcome__highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .zf_welcome__card {
    max-width: 100%;
    width: 100%;
  }
}

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

.zf_advantages__title {
  text-align: center;
  margin-bottom: 4rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zf_advantages__grid {
  max-width: var(--zf_container-max);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.zf_advantages__item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--zf_shadow-float);
  transition: var(--zf_transition-smooth);
  position: relative;
  overflow: hidden;
}

.zf_advantages__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--zf_conic-gradient);
}

.zf_advantages__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zf_advantages__item i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zf_advantages__item h3 {
  margin-bottom: 1rem;
  color: #333;
}

.zf_advantages__item p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .zf_advantages__grid {
    gap: 1.5rem;
  }
  
  .zf_advantages__item {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .zf_advantages__section {
    padding: 4rem 1rem;
  }
  
  .zf_advantages__grid {
    gap: 1.5rem;
  }
  
  .zf_advantages__item {
    min-width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .zf_advantages__section {
    padding: 3rem 0.5rem;
  }
  
  .zf_advantages__item {
    min-width: 100%;
    max-width: 100%;
    padding: 2rem 1rem;
  }
}

.zf_about__section {
  padding: 6rem 2rem;
  background: #f8f9fa;
}

.zf_about__container {
  max-width: var(--zf_container-max);
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.zf_about__visual {
  flex: 1;
}

.zf_about__imageframe {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--zf_shadow-float);
}

.zf_about__imageframe::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--zf_conic-gradient);
  border-radius: 30px;
  z-index: -1;
  animation: zf_rotate 10s linear infinite;
}

.zf_about__imageframe img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.zf_about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.zf_about__block {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--zf_shadow-float);
  position: relative;
  overflow: hidden;
}

.zf_about__block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--zf_linear-vibrant);
}

.zf_about__block h2, .zf_about__block h3 {
  margin-bottom: 1.5rem;
  color: #333;
}

.zf_about__block p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.zf_about__features, .zf_about__milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.zf_about__feature, .zf_about__milestone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.zf_about__feature i, .zf_about__milestone i {
  color: #ff2d75;
}

.zf_about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--zf_linear-vibrant);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--zf_transition-smooth);
}

.zf_about__cta:hover {
  transform: translateX(10px);
  box-shadow: var(--zf_shadow-float);
}

@keyframes zf_rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .zf_about__container {
    gap: 3rem;
  }
  
  .zf_about__block {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .zf_about__section {
    padding: 4rem 1rem;
  }
  
  .zf_about__container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .zf_about__content {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .zf_about__section {
    padding: 3rem 0.5rem;
  }
  
  .zf_about__block {
    padding: 1.5rem;
  }
  
  .zf_about__features, .zf_about__milestones {
    flex-direction: column;
  }
}

.zf_premium__section {
  padding: 6rem 2rem;
  background: var(--zf_conic-gradient);
  position: relative;
  overflow: hidden;
}

.zf_premium__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/zf-core/zf-images/zf-back-img-2.webp') no-repeat center/cover;
  opacity: 0.1;
}

.zf_premium__content {
  max-width: var(--zf_container-max);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.zf_premium__title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
}

.zf_premium__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.zf_premium__benefits {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.zf_premium__benefit {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--zf_transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zf_premium__benefit:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
}

.zf_premium__benefit i {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  display: block;
}

.zf_premium__benefit h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.zf_premium__benefit p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.zf_premium__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #ff2d75;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--zf_transition-smooth);
}

.zf_premium__cta:hover {
  transform: translateY(-5px);
  box-shadow: var(--zf_shadow-float);
}

@media (max-width: 1024px) {
  .zf_premium__title {
    font-size: 2.8rem;
  }
  
  .zf_premium__description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .zf_premium__section {
    padding: 4rem 1rem;
  }
  
  .zf_premium__title {
    font-size: 2.4rem;
  }
  
  .zf_premium__benefits {
    gap: 1.5rem;
  }
  
  .zf_premium__benefit {
    min-width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .zf_premium__section {
    padding: 3rem 0.5rem;
  }
  
  .zf_premium__title {
    font-size: 2rem;
  }
  
  .zf_premium__benefits {
    flex-direction: column;
  }
  
  .zf_premium__benefit {
    min-width: 100%;
    max-width: 100%;
  }
}

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

.zf_games__title {
  text-align: center;
  margin-bottom: 4rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zf_games__grid {
  max-width: var(--zf_container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 2.5rem;
  justify-content: center;
}

.zf_games__card {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--zf_shadow-float);
  transition: var(--zf_transition-smooth);
  position: relative;
}

.zf_games__card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.zf_games__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--zf_linear-vibrant);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.zf_games__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.zf_games__image img {
  width: 100%;
  height: 100%;
  transition: var(--zf_transition-smooth);
}

.zf_games__card:hover .zf_games__image img {
  transform: scale(1.1);
}

.zf_games__info {
  padding: 2rem;
}

.zf_games__info h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
  min-height: 60px;
}

.zf_games__rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
  color: #ffc107;
}

.zf_games__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--zf_linear-vibrant);
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--zf_transition-smooth);
}

.zf_games__link:hover {
  gap: 1rem;
  box-shadow: var(--zf_shadow-float);
}

@media (max-width: 1024px) {
  .zf_games__grid {
    gap: 2rem;
  }
  
  .zf_games__card {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .zf_games__section {
    padding: 4rem 1rem;
  }
  
  .zf_games__card {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .zf_games__section {
    padding: 3rem 0.5rem;
  }

  .zf_games__grid {  
    flex-direction: column;  
    align-items: center;
  }
  
  .zf_games__info {
    padding: 1.5rem;
  }
}

.zf_subscribe__section {
  padding: 6rem 2rem;
  background: #f8f9fa;
}

.zf_subscribe__container {
  max-width: var(--zf_container-max);
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 4rem;
  box-shadow: var(--zf_shadow-float);
  position: relative;
  overflow: hidden;
}

.zf_subscribe__container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: var(--zf_conic-gradient);
  opacity: 0.05;
  transform: rotate(45deg);
}

.zf_subscribe__main {
  flex: 2;
  position: relative;
  z-index: 1;
}

.zf_subscribe__title {
  margin-bottom: 1.5rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
}

.zf_subscribe__description {
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.zf_subscribe__benefits {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.zf_subscribe__benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
}

.zf_subscribe__benefit i {
  color: #ff2d75;
}

.zf_subscribe__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zf_subscribe__inputgroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zf_subscribe__input {
  padding: 1.2rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  font-size: 1rem;
  transition: var(--zf_transition-smooth);
  background: white;
}

.zf_subscribe__input:focus {
  outline: none;
  border-color: #ff2d75;
  box-shadow: 0 0 0 3px rgba(255, 45, 117, 0.1);
}

.zf_subscribe__input.zf_error {
  border-color: #dc3545;
}

.zf_subscribe__checkboxgroup {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.zf_subscribe__checkbox {
  margin-top: 0.3rem;
}

.zf_subscribe__checkboxgroup label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.zf_subscribe__checkboxgroup label a {
  color: #ff2d75;
  text-decoration: none;
}

.zf_subscribe__checkboxgroup label a:hover {
  text-decoration: underline;
}

.zf_subscribe__error {
  color: #dc3545;
  font-size: 0.8rem;
  min-height: 1rem;
  display: none;
}

.zf_subscribe__error.zf_visible {
  display: block;
}

.zf_subscribe__button {
  background: var(--zf_linear-vibrant);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--zf_transition-smooth);
}

.zf_subscribe__button:enabled {
  background: var(--zf_linear-vibrant);
}

.zf_subscribe__button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.zf_subscribe__button:enabled:hover {
  transform: translateY(-3px);
  box-shadow: var(--zf_shadow-float);
}

.zf_subscribe__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zf_subscribe__animation {
  font-size: 8rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: zf_bounce 2s infinite;
}

@keyframes zf_bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.zf_subscribe__success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--zf_transition-smooth);
  padding: 2rem;
}

.zf_subscribe__success.zf_active {
  opacity: 1;
  visibility: visible;
}

.zf_subscribe__successcontent {
  text-align: center;
  max-width: 400px;
}

.zf_subscribe__successcontent i {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1.5rem;
}

.zf_subscribe__successcontent h3 {
  margin-bottom: 1rem;
  color: #333;
}

.zf_subscribe__successcontent p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.zf_subscribe__successbuttons button {
  padding: 0.8rem 1.5rem;
  border: 2px solid #ff2d75;
  background: white;
  color: #ff2d75;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--zf_transition-smooth);
}

.zf_subscribe__successbuttons button:hover {
  background: #ff2d75;
  color: white;
}

@media (max-width: 1024px) {
  .zf_subscribe__container {
    gap: 3rem;
    padding: 3rem;
  }
  
  .zf_subscribe__animation {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .zf_subscribe__section {
    padding: 4rem 1rem;
  }
  
  .zf_subscribe__container {
    flex-direction: column;
    gap: 3rem;
    padding: 2.5rem;
  }
  
  .zf_subscribe__benefits {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .zf_subscribe__section {
    padding: 3rem 0.5rem;
  }
  
  .zf_subscribe__container {
    padding: 2rem 1.5rem;
  }
  
  .zf_subscribe__title {
    font-size: 2rem;
  }
  
  .zf_subscribe__successbuttons {
    flex-direction: column;
  }
}

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

.zf_testimonials__title {
  text-align: center;
  margin-bottom: 4rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zf_testimonials__grid {
  max-width: var(--zf_container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.zf_testimonials__card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--zf_shadow-float);
  transition: var(--zf_transition-smooth);
  position: relative;
  overflow: hidden;
}

.zf_testimonials__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zf_testimonials__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--zf_conic-gradient);
}

.zf_testimonials__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.zf_testimonials__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f8f9fa;
}

.zf_testimonials__avatar img {
  width: 100%;
  height: 100%;
}

.zf_testimonials__userinfo {
  flex: 1;
}

.zf_testimonials__userinfo h4 {
  margin-bottom: 0.3rem;
  color: #333;
}

.zf_testimonials__userinfo p {
  color: #666;
  font-size: 0.9rem;
}

.zf_testimonials__rating {
  display: flex;
  gap: 0.2rem;
  color: #ffc107;
}

.zf_testimonials__text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.zf_testimonials__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  font-size: 0.9rem;
}

.zf_testimonials__footer i {
  color: #ff2d75;
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .zf_testimonials__grid {
    gap: 2rem;
  }
  
  .zf_testimonials__card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .zf_testimonials__section {
    padding: 4rem 1rem;
  }
  
  .zf_testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .zf_testimonials__section {
    padding: 3rem 0.5rem;
  }
  
  .zf_testimonials__card {
    padding: 1.5rem;
  }
  
  .zf_testimonials__header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
}

.zf_faq__section {
  padding: 6rem 2rem;
  background: #f8f9fa;
}

.zf_faq__container {
  max-width: var(--zf_container-max);
  margin: 0 auto;
}

.zf_faq__title {
  text-align: center;
  margin-bottom: 4rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zf_faq__columns {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}

.zf_faq__column {
  flex: 1;
}

.zf_faq__subtitle {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}

.zf_faq__subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--zf_linear-vibrant);
}

.zf_faq__item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--zf_transition-smooth);
}

.zf_faq__item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.zf_faq__question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  transition: var(--zf_transition-smooth);
}

.zf_faq__question:hover {
  color: #ff2d75;
}

.zf_faq__question i {
  transition: var(--zf_transition-smooth);
  color: #ff2d75;
}

.zf_faq__item.zf_active .zf_faq__question i {
  transform: rotate(180deg);
}

.zf_faq__answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--zf_transition-smooth);
}

.zf_faq__item.zf_active .zf_faq__answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.zf_faq__answer p {
  color: #666;
  line-height: 1.7;
}

.zf_faq__answer a {
  color: #ff2d75;
  text-decoration: none;
}

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

.zf_faq__cta {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--zf_shadow-float);
}

.zf_faq__cta p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.zf_faq__cta .zf_contact__trigger {
  background: var(--zf_linear-vibrant);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--zf_transition-smooth);
  font-size: 1rem;
}

.zf_faq__cta .zf_contact__trigger:hover {
  transform: translateY(-3px);
  box-shadow: var(--zf_shadow-float);
}

@media (max-width: 1024px) {
  .zf_faq__columns {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .zf_faq__section {
    padding: 4rem 1rem;
  }
  
  .zf_faq__columns {
    flex-direction: column;
    gap: 3rem;
  }
  
  .zf_faq__cta {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .zf_faq__section {
    padding: 3rem 0.5rem;
  }
  
  .zf_faq__question {
    padding: 1.2rem;
  }
  
  .zf_faq__cta {
    padding: 1.5rem;
  }
}

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

.zf_responsible__container {
  max-width: var(--zf_container-max);
  margin: 0 auto;
}

.zf_responsible__content {
  text-align: center;
}

.zf_responsible__title {
  margin-bottom: 3rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.zf_responsible__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--zf_linear-vibrant);
  border-radius: 2px;
}

.zf_responsible__text {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: left;
  color: #666;
  line-height: 1.8;
}

.zf_responsible__text p {
  margin-bottom: 1.5rem;
}

.zf_responsible__text a {
  color: #ff2d75;
  text-decoration: none;
  font-weight: 500;
}

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

.zf_responsible__principles {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.zf_responsible__principle {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: #f8f9fa;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--zf_transition-smooth);
  position: relative;
  overflow: hidden;
}

.zf_responsible__principle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--zf_conic-gradient);
}

.zf_responsible__principle:hover {
  transform: translateY(-10px);
  box-shadow: var(--zf_shadow-float);
}

.zf_responsible__principle i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zf_responsible__principle h4 {
  margin-bottom: 1rem;
  color: #333;
}

.zf_responsible__principle p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .zf_responsible__principles {
    gap: 1.5rem;
  }
  
  .zf_responsible__principle {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .zf_responsible__section {
    padding: 4rem 1rem;
  }
  
  .zf_responsible__principles {
    gap: 1.5rem;
  }
  
  .zf_responsible__principle {
    min-width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .zf_responsible__section {
    padding: 3rem 0.5rem;
  }
  
  .zf_responsible__principles {
    flex-direction: column;
  }
  
  .zf_responsible__principle {
    min-width: 100%;
    max-width: 100%;
  }
}

.zf_contact__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--zf_transition-smooth);
  padding: 2rem;
}

.zf_contact__modal.zf_active {
  opacity: 1;
  visibility: visible;
}

.zf_contact__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.zf_contact__container {
  background: white;
  border-radius: 30px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: zf_modalSlide 0.5s ease-out;
}

.zf_contact__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f8f9fa;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #666;
  transition: var(--zf_transition-smooth);
  z-index: 2;
}

.zf_contact__close:hover {
  background: #ff2d75;
  color: white;
}

.zf_contact__header {
  padding: 3rem 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.zf_contact__header h2 {
  margin-bottom: 1rem;
  background: var(--zf_linear-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zf_contact__header p {
  color: #666;
  font-size: 1.1rem;
}

.zf_contact__form {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zf_contact__inputgroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zf_contact__input, .zf_contact__textarea {
  padding: 1.2rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--zf_transition-smooth);
  background: white;
}

.zf_contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.zf_contact__input:focus, .zf_contact__textarea:focus {
  outline: none;
  border-color: #ff2d75;
  box-shadow: 0 0 0 3px rgba(255, 45, 117, 0.1);
}

.zf_contact__input.zf_error, .zf_contact__textarea.zf_error {
  border-color: #dc3545;
}

.zf_contact__checkboxgroup {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.zf_contact__checkbox {
  margin-top: 0.3rem;
}

.zf_contact__checkboxgroup label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.zf_contact__checkboxgroup label a {
  color: #ff2d75;
  text-decoration: none;
}

.zf_contact__checkboxgroup label a:hover {
  text-decoration: underline;
}

.zf_contact__error {
  color: #dc3545;
  font-size: 0.8rem;
  min-height: 1rem;
  display: none;
}

.zf_contact__error.zf_visible {
  display: block;
}

.zf_contact__submit {
  background: var(--zf_linear-vibrant);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--zf_transition-smooth);
  margin-top: 1rem;
}

.zf_contact__submit:enabled {
  background: var(--zf_linear-vibrant);
}

.zf_contact__submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.zf_contact__submit:enabled:hover {
  transform: translateY(-3px);
  box-shadow: var(--zf_shadow-float);
}

.zf_contact__info {
  padding: 2rem 3rem 3rem;
  background: #f8f9fa;
  border-radius: 0 0 30px 30px;
}

.zf_contact__info h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

.zf_contact__methods {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.zf_contact__method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.zf_contact__method i {
  font-size: 2rem;
  color: #ff2d75;
  margin-top: 0.5rem;
}

.zf_contact__method h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

.zf_contact__method p, .zf_contact__method span {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.zf_contact__method a {
  color: #ff2d75;
  text-decoration: none;
  font-weight: 500;
}

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

@keyframes zf_modalSlide {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.zf_contact__success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--zf_transition-smooth);
  padding: 2rem;
}

.zf_contact__success.zf_active {
  opacity: 1;
  visibility: visible;
}

.zf_contact__successoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.zf_contact__successcontent {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: zf_modalSlide 0.5s ease-out;
}

.zf_contact__successcontent i {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1.5rem;
}

.zf_contact__successcontent h3 {
  margin-bottom: 1rem;
  color: #333;
}

.zf_contact__successcontent p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.zf_contact__successclose {
  background: var(--zf_linear-vibrant);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--zf_transition-smooth);
}

.zf_contact__successclose:hover {
  transform: translateY(-3px);
  box-shadow: var(--zf_shadow-float);
}

@media (max-width: 768px) {
  .zf_contact__modal {
    padding: 1rem;
  }
  
  .zf_contact__container {
    max-height: 95vh;
  }
  
  .zf_contact__header, .zf_contact__form, .zf_contact__info {
    padding: 2rem 1.5rem;
  }
  
  .zf_contact__methods {
    flex-direction: column;
    align-items: center;
  }
  
  .zf_contact__method {
    max-width: 100%;
  }
  
  .zf_contact__successcontent {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .zf_contact__header, .zf_contact__form, .zf_contact__info {
    padding: 1.5rem 1rem;
  }

  .zf_contact__header h2 {
    margin-top: 30px;
  }
  
  .zf_contact__successcontent {
    padding: 1.5rem;
  }

  .zf_contact__method {
    flex-direction: column;
    gap: 15px;
  }
}

.zf_footer__container {
  background: #2c3e50;
  color: white;
  padding: 3rem 2rem 2rem;
}

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

.zf_footer__brand {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.zf_footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.zf_footer__logo i {
  font-size: 2rem;
  color: #ff2d75;
}

.zf_footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.zf_footer__links a, .zf_footer__links button {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--zf_transition-smooth);
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
}

.zf_footer__links a:hover, .zf_footer__links button:hover {
  color: #ff2d75;
}

.zf_footer__copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.zf_footer__partners {
  max-width: var(--zf_container-max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.zf_footer__partners a {
  min-height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: var(--zf_linear-vibrant);
  padding: 10px 15px;
  transition: var(--zf_transition-smooth);
}

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

.zf_footer__partners img {
  height: 100%;
  max-height: 185px;
}

@media (max-width: 1024px) {
  .zf_footer__main {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .zf_footer__brand {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .zf_footer__container {
    padding: 2rem 1rem 1rem;
  }
  
  .zf_footer__links {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .zf_footer__partners {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .zf_footer__links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .zf_footer__partners {
    flex-direction: column;
    gap: 1rem;
  }
}

.zf_scrolltop {
  position: fixed;
  bottom: 1.3rem;
  left: 1.8rem;
  width: 55px;
  height: 55px;
  background: var(--zf_linear-vibrant);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--zf_transition-smooth);
  z-index: 9996;
  font-size: 2rem;
}

.zf_scrolltop.zf_visible {
  opacity: 1;
  visibility: visible;
}

.zf_scrolltop:hover {
  transform: translateY(-5px);
  box-shadow: var(--zf_shadow-float);
}

@media (max-width: 768px) {
  .zf_scrolltop {
    bottom: 1.1rem;
    left: 1.1rem;
    width: 43px;
    height: 43px;
    font-size: 1.5rem;
  }
}

.zfpgs_privacy__container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zfpgs_privacy__hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.zfpgs_privacy__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/zf-core/zf-images/zf-back-img-3.webp') no-repeat center/cover;
  opacity: 0.1;
}

.zfpgs_privacy__content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.zfpgs_privacy__content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zfpgs_privacy__badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.zfpgs_privacy__badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.zfpgs_privacy__badge i {
  font-size: 1.5rem;
}

.zfpgs_privacy__details {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  gap: 4rem;
}

.zfpgs_privacy__main {
  flex: 3;
}

.zfpgs_privacy__sidebar {
  flex: 1;
}

.zfpgs_privacy__intro {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.zfpgs_privacy__intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zfpgs_privacy__intro p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.zfpgs_privacy__sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.zfpgs_privacy__section {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

.zfpgs_privacy__section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zfpgs_privacy__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
}

.zfpgs_privacy__header i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zfpgs_privacy__header h3 {
  font-size: 1.8rem;
  color: #333;
}

.zfpgs_privacy__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zfpgs_privacy__point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.zfpgs_privacy__point:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.zfpgs_privacy__point i {
  font-size: 2rem;
  color: #667eea;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.zfpgs_privacy__point h4 {
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.2rem;
}

.zfpgs_privacy__point p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.zfpgs_privacy__contact {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  text-align: center;
}

.zfpgs_privacy__contact h3 {
  margin-bottom: 1rem;
  color: white;
}

.zfpgs_privacy__contact p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.zfpgs_privacy__contactlink {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.zfpgs_privacy__contactlink:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.zfpgs_privacy__resources {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.zfpgs_privacy__resources h4 {
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
}

.zfpgs_privacy__resourcelink {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #667eea;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.zfpgs_privacy__resourcelink:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .zfpgs_privacy__details {
    flex-direction: column;
    gap: 3rem;
  }
  
  .zfpgs_privacy__sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .zfpgs_privacy__hero {
    padding: 7rem 1rem 3rem;
  }
  
  .zfpgs_privacy__content h1 {
    font-size: 2.8rem;
  }
  
  .zfpgs_privacy__details {
    padding: 3rem 1rem;
  }
  
  .zfpgs_privacy__section {
    padding: 2rem;
  }
  
  .zfpgs_privacy__point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .zfpgs_privacy__hero {
    padding: 6rem 0.5rem 2rem;
  }
  
  .zfpgs_privacy__content h1 {
    font-size: 2.2rem;
  }
  
  .zfpgs_privacy__content p {
    font-size: 1.1rem;
  }
  
  .zfpgs_privacy__badges {
    flex-direction: column;
    align-items: center;
  }
  
  .zfpgs_privacy__section {
    padding: 1.5rem;
  }
  
  .zfpgs_privacy__header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .zfpgs_privacy__contact {
    padding: 2.5rem 0.5rem;
  }

  .zfpgs_privacy__contactlink {
    flex-direction: column;
  }
}

.zfpgs_terms__container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.zfpgs_terms__banner {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 8rem 2rem 6rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.zfpgs_terms__banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/zf-core/zf-images/zf-back-img-1.webp') no-repeat center/cover;
  opacity: 0.1;
}

.zfpgs_terms__bannercontent h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.zfpgs_terms__bannercontent p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zfpgs_terms__scrollindicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: zfpgs_bounce 2s infinite;
}

.zfpgs_terms__scrollindicator i {
  font-size: 2rem;
}

@keyframes zfpgs_bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.zfpgs_terms__navigation {
  background: white;
  padding: 2rem;
  position: sticky;
  top: var(--zf_header-height);
  z-index: 100;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.zfpgs_terms__navcontainer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.zfpgs_terms__navbtn {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.zfpgs_terms__navbtn.active,
.zfpgs_terms__navbtn:hover {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.zfpgs_terms__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.zfpgs_terms__section {
  display: none;
  animation: zfpgs_fadeIn 0.5s ease;
}

.zfpgs_terms__section.active {
  display: block;
}

@keyframes zfpgs_fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.zfpgs_terms__sectionheader {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid #f8f9fa;
}

.zfpgs_terms__sectionheader i {
  font-size: 4rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.zfpgs_terms__sectionheader h2 {
  font-size: 2.5rem;
  color: #333;
}

.zfpgs_terms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.zfpgs_terms__card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
  text-align: center;
}

.zfpgs_terms__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zfpgs_terms__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.zfpgs_terms__icon i {
  font-size: 2.5rem;
  color: white;
}

.zfpgs_terms__card h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.zfpgs_terms__card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.zfpgs_terms__list {
  list-style: none;
  text-align: left;
}

.zfpgs_terms__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #555;
}

.zfpgs_terms__list i {
  color: #4facfe;
  font-size: 1.2rem;
}

.zfpgs_terms__acknowledgment {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 30px;
  text-align: center;
  margin-top: 4rem;
}

.zfpgs_terms__ackcontent i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.9;
}

.zfpgs_terms__ackcontent h3 {
  margin-bottom: 1rem;
  color: white;
  font-size: 2rem;
}

.zfpgs_terms__ackcontent p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zfpgs_terms__contact {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.zfpgs_terms__contact a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

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

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

@media (max-width: 768px) {
  .zfpgs_terms__banner {
    padding: 7rem 1rem 4rem;
  }
  
  .zfpgs_terms__bannercontent h1 {
    font-size: 2.8rem;
  }
  
  .zfpgs_terms__content {
    padding: 3rem 1rem;
  }
  
  .zfpgs_terms__navcontainer {
    flex-direction: column;
    align-items: center;
  }
  
  .zfpgs_terms__navbtn {
    width: 100%;
    max-width: 300px;
  }
  
  .zfpgs_terms__card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .zfpgs_terms__banner {
    padding: 6rem 0.5rem 3rem;
  }
  
  .zfpgs_terms__bannercontent h1 {
    font-size: 2.2rem;
  }
  
  .zfpgs_terms__bannercontent p {
    font-size: 1.1rem;
  }
  
  .zfpgs_terms__grid {
    grid-template-columns: 1fr;
  }
  
  .zfpgs_terms__card {
    padding: 1.5rem;
  }
  
  .zfpgs_terms__sectionheader h2 {
    font-size: 2rem;
  }

  .zfpgs_terms__contact a {
    font-size: 0.8rem;
  }
}

.zfpgs_cookies__container {
  min-height: 100vh;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.zfpgs_cookies__header {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.zfpgs_cookies__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/zf-core/zf-images/zf-back-img-2.webp') no-repeat center/cover;
  opacity: 0.1;
}

.zfpgs_cookies__hero {
  max-width: 800px;
  margin: 0 auto;
}

.zfpgs_cookies__icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.zfpgs_cookies__icon i {
  font-size: 3rem;
  color: white;
}

.zfpgs_cookies__hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.zfpgs_cookies__hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.zfpgs_cookies__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.zfpgs_cookies__intro {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.zfpgs_cookies__intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zfpgs_cookies__intro p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.zfpgs_cookies__types {
  margin-bottom: 4rem;
}

.zfpgs_cookies__types h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #333;
}

.zfpgs_cookies__typelist {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.zfpgs_cookies__typeitem {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

.zfpgs_cookies__typeitem:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zfpgs_cookies__typeicon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zfpgs_cookies__typeicon i {
  font-size: 2.5rem;
  color: white;
}

.zfpgs_cookies__typecontent h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.zfpgs_cookies__typecontent p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.zfpgs_cookies__examples {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.zfpgs_cookies__example {
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #666;
  border: 1px solid #e9ecef;
}

.zfpgs_cookies__details {
  margin-bottom: 4rem;
}

.zfpgs_cookies__detailscolumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.zfpgs_cookies__detailscolumn h3 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.8rem;
  text-align: center;
}

.zfpgs_cookies__durationlist,
.zfpgs_cookies__thirdpartylist {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zfpgs_cookies__durationitem,
.zfpgs_cookies__thirdpartyitem {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

.zfpgs_cookies__durationitem:hover,
.zfpgs_cookies__thirdpartyitem:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zfpgs_cookies__durationitem i,
.zfpgs_cookies__thirdpartyitem i {
  font-size: 2rem;
  color: #ff9a9e;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.zfpgs_cookies__durationitem h4,
.zfpgs_cookies__thirdpartyitem h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

.zfpgs_cookies__durationitem p,
.zfpgs_cookies__thirdpartyitem p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  min-height: 78px;
}

.zfpgs_cookies__management {
  margin-bottom: 4rem;
}

.zfpgs_cookies__management h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #333;
}

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

.zfpgs_cookies__managementcard {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

.zfpgs_cookies__managementcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zfpgs_cookies__managementcard i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: block;
}

.zfpgs_cookies__managementcard h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.3rem;
}

.zfpgs_cookies__managementcard p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.zfpgs_cookies__managementcard ul {
  list-style: none;
  text-align: left;
  color: #666;
}

.zfpgs_cookies__managementcard li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.zfpgs_cookies__managementcard li::before {
  content: '•';
  color: #ff9a9e;
  position: absolute;
  left: 0;
}

.zfpgs_cookies__data {
  margin-bottom: 4rem;
}

.zfpgs_cookies__data h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #333;
}

.zfpgs_cookies__datagrid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.zfpgs_cookies__dataitem {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

.zfpgs_cookies__dataitem:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zfpgs_cookies__datainfo h4 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.3rem;
}

.zfpgs_cookies__datainfo p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.zfpgs_cookies__dataexamples {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.zfpgs_cookies__dataexamples span {
  background: #f8f9fa;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #666;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.zfpgs_cookies__dataexamples span:hover {
  background: #ff9a9e;
  color: white;
  transform: translateY(-2px);
}

.zfpgs_cookies__contact {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  border-radius: 30px;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.zfpgs_cookies__contactcontent i {
  font-size: 2rem;
  display: block;
  opacity: 0.9;
}

.zfpgs_cookies__contactcontent h3 {
  margin-bottom: 1rem;
  color: white;
  font-size: 2rem;
}

.zfpgs_cookies__contactcontent p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.zfpgs_cookies__contactbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.zfpgs_cookies__contactbtn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .zfpgs_cookies__header {
    padding: 7rem 1rem 3rem;
  }
  
  .zfpgs_cookies__hero h1 {
    font-size: 2.8rem;
  }
  
  .zfpgs_cookies__main {
    padding: 3rem 1rem;
  }
  
  .zfpgs_cookies__typeitem {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .zfpgs_cookies__managementgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .zfpgs_cookies__header {
    padding: 6rem 0.5rem 2rem;
  }
  
  .zfpgs_cookies__hero h1 {
    font-size: 2.2rem;
  }
  
  .zfpgs_cookies__hero p {
    font-size: 1.1rem;
  }
  
  .zfpgs_cookies__typeitem,
  .zfpgs_cookies__dataitem,
  .zfpgs_cookies__managementcard {
    padding: 2rem;
  }
  
  .zfpgs_cookies__examples,
  .zfpgs_cookies__dataexamples {
    justify-content: center;
  }
}

.zfpgs_404__container {
  min-height: 100vh;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
}

.zfpgs_404__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/zf-core/zf-images/zf-back-img-3.webp') no-repeat center/cover;
  opacity: 0.1;
}

.zfpgs_404__content {
  text-align: center;
  color: white;
  max-width: 800px;
  z-index: 1;
}

.zfpgs_404__animation {
  position: relative;
  height: 300px;
  margin-bottom: 3rem;
}

.zfpgs_404__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: zfpgs_orbit 10s linear infinite;
}

.zfpgs_404__planet {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

.zfpgs_404__planet i {
  font-size: 2.5rem;
  color: white;
}

.zfpgs_404__moon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(245, 87, 108, 0.5);
  animation: zfpgs_moonOrbit 3s linear infinite;
}

.zfpgs_404__moon i {
  font-size: 1rem;
  color: white;
}

.zfpgs_404__stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zfpgs_404__stars i {
  position: absolute;
  color: white;
  animation: zfpgs_twinkle 3s infinite;
}

.zfpgs_404__stars i:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.zfpgs_404__stars i:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 0.5s;
}

.zfpgs_404__stars i:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 1s;
}

.zfpgs_404__stars i:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 1.5s;
}

.zfpgs_404__stars i:nth-child(5) {
  top: 50%;
  left: 40%;
  animation-delay: 2s;
}

@keyframes zfpgs_orbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes zfpgs_moonOrbit {
  from { transform: translateX(-50%) rotate(0deg) translateX(100px) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes zfpgs_twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.zfpgs_404__text h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zfpgs_404__text p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zfpgs_404__features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.zfpgs_404__feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.zfpgs_404__feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.zfpgs_404__feature i {
  font-size: 1.5rem;
  color: #667eea;
}

.zfpgs_404__actions {
  margin-bottom: 4rem;
}

.zfpgs_404__homebtn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.zfpgs_404__homebtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.zfpgs_404__contact {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zfpgs_404__contact p {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.zfpgs_404__contactlink {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.zfpgs_404__contactlink:hover {
  color: #f093fb;
}

.zfpgs_404__gamespreview {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zfpgs_404__gamespreview h3 {
  margin-bottom: 2rem;
  color: white;
  font-size: 1.5rem;
}

.zfpgs_404__gamesgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.zfpgs_404__gamecard {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.zfpgs_404__gamecard i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.zfpgs_404__gamecard h4 {
  margin-bottom: 0.8rem;
  color: white;
  font-size: 1.2rem;
}

.zfpgs_404__gamecard p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .zfpgs_404__container {
    padding: 1rem;
  }
  
  .zfpgs_404__text h1 {
    font-size: 3rem;
  }
  
  .zfpgs_404__text p {
    font-size: 1.1rem;
  }
  
  .zfpgs_404__features {
    flex-direction: column;
    align-items: center;
  }
  
  .zfpgs_404__gamesgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .zfpgs_404__text h1 {
    font-size: 2.5rem;
  }
  
  .zfpgs_404__animation {
    height: 250px;
  }
  
  .zfpgs_404__orbit {
    width: 150px;
    height: 150px;
  }
  
  .zfpgs_404__planet {
    width: 60px;
    height: 60px;
  }
  
  .zfpgs_404__planet i {
    font-size: 2rem;
  }
  
  .zfpgs_404__gamespreview {
    padding: 2rem 1rem;
  }
}