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

:root {
  --rgsd-rainbow-gradient: linear-gradient(135deg, #e3645b, #f4a261, #f6d39b, #95d5b2, #89c2d9, #6d597a, #c85a7a);
  --rgsd-electric-gradient: linear-gradient(45deg, #52b788, #38bdf8, #3a86ff, #5f0a87);
  --rgsd-neon-gradient: linear-gradient(90deg, #b56576, #c32f27, #f6bd60, #7fb069);
  --rgsd-sunset-gradient: linear-gradient(135deg, #e76f51, #f4a261, #f4d58d, #f2cc8f);
  --rgsd-ocean-gradient: linear-gradient(45deg, #2a9d8f, #1d3557, #2a9d8f, #1d3557);
  --rgsd-magic-gradient: linear-gradient(135deg, #2a6f97, #3d405b, #b56576, #d86b6f);
  --rgsd-header-height: 80px;
  --rgsd-container-max: 1470px;
  --rgsd-transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --rgsd-transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --rgsd-shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --rgsd-shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.15);
  --rgsd-shadow-strong: 0 25px 50px rgba(0, 0, 0, 0.2);
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #1f2933;
  background: #f5f7fb;
}

.rgsd-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--rgsd-transition-smooth);
}

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

.rgsd-navigation-section {
  background: var(--rgsd-electric-gradient);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--rgsd-header-height);
  box-shadow: var(--rgsd-shadow-medium);
}

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

.rgsd-navigation-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.rgsd-navigation-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.rgsd-navigation-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  align-items: center;
}

.rgsd-navigation-link {
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-navigation-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.rgsd-navigation-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

main {
  flex: 1;
  margin-top: var(--rgsd-header-height);
}

.rgsd-welcome-section {
  background: var(--rgsd-rainbow-gradient);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.rgsd-welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/rgsd-engine/rgsd-image/welcome-art.webp') center/cover no-repeat;
  opacity: 0.1;
}

.rgsd-welcome-content {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rgsd-welcome-text {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.rgsd-welcome-text h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: rgsd-title-float 3s ease-in-out infinite;
}

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

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

.rgsd-welcome-disclaimer {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  display: inline-block;
}

.rgsd-welcome-disclaimer p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.rgsd-welcome-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rgsd-feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: var(--rgsd-shadow-soft);
  transition: var(--rgsd-transition-bounce);
  position: relative;
  overflow: hidden;
}

.rgsd-feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--rgsd-shadow-strong);
}

.rgsd-feature-card h3 {
  color: #1f2933;
  margin-bottom: 1rem;
  min-height: 7.8rem;
}

.rgsd-feature-card p {
  color: #666;
  margin-bottom: 1.5rem;
  min-height: 5rem;
}

.rgsd-feature-link {
  color: #3a86ff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rgsd-feature-card i:last-child {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: rgba(0, 102, 255, 0.2);
}

.rgsd-platforms-section {
  padding: 6rem 2rem;
  background: var(--rgsd-sunset-gradient);
}

.rgsd-platforms-container {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
}

.rgsd-platforms-container h2 {
  text-align: center;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rgsd-platforms-intro {
  text-align: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.rgsd-platforms-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rgsd-platform-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--rgsd-shadow-medium);
  transition: var(--rgsd-transition-smooth);
}

.rgsd-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rgsd-shadow-strong);
}

.rgsd-platform-header {
  background: var(--rgsd-magic-gradient);
  padding: 2rem;
  color: white;
  position: relative;
}

.rgsd-platform-badge {
  background: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.rgsd-platform-logo {
  width: 180px;
  height: 80px;
  background: white;
  border-radius: 15px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rgsd-platform-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rgsd-platform-header h3 {
  margin: 0;
  font-size: 2.2rem;
}

.rgsd-platform-content {
  padding: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.rgsd-platform-features p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.rgsd-platform-rating {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f5f7fb;
  border-radius: 15px;
}

.rgsd-rating-stars {
  color: #f6bd60;
  font-size: 1.2rem;
}

.rgsd-platform-payments {
  margin: 2rem 0;
  text-align: center;
}

.rgsd-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.rgsd-payment-methods span {
  background: #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.rgsd-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rgsd-ocean-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-platform-link:hover {
  transform: translateX(5px);
  box-shadow: var(--rgsd-shadow-soft);
}

.rgsd-subscription-section {
  padding: 6rem 2rem;
  background: var(--rgsd-neon-gradient);
  position: relative;
}

.rgsd-subscription-container {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rgsd-subscription-content {
  flex: 1;
  color: white;
}

.rgsd-subscription-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rgsd-subscription-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.rgsd-subscription-benefits p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.rgsd-subscription-form-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--rgsd-shadow-strong);
}

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

.rgsd-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #1f2933;
}

.rgsd-form-input, .rgsd-form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
   font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--rgsd-transition-smooth);
  background: white;
}

.rgsd-form-input:focus, .rgsd-form-textarea:focus {
  outline: none;
  border-color: #3a86ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  transform: translateY(-2px);
}

.rgsd-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.rgsd-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.rgsd-checkbox-input {
  margin-top: 0.3rem;
}

.rgsd-form-checkbox label {
  margin: 0;
  font-weight: normal;
  line-height: 1.5;
}

.rgsd-form-error {
  color: #d62828;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
  display: none;
}

.rgsd-form-input:invalid:focus,
.rgsd-form-textarea:invalid:focus {
  border-color: #d62828;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.rgsd-form-input:valid:focus,
.rgsd-form-textarea:valid:focus {
  border-color: #2d6a4f;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.rgsd-form-button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--rgsd-ocean-gradient);
  color: white;
  border: none;
  border-radius: 25px;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-form-button:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: var(--rgsd-shadow-medium);
}

.rgsd-form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rgsd-success-message {
  text-align: center;
  padding: 2rem;
}

.rgsd-success-message h3 {
  color: #2d6a4f;
  margin-bottom: 1rem;
}

.rgsd-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.rgsd-unsubscribe-button, .rgsd-change-email-button {
  padding: 0.8rem 1.5rem;
  border: 2px solid #3a86ff;
  border-radius: 20px;
  background: white;
  color: #3a86ff;
  font-weight: 700;
  cursor: pointer;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-unsubscribe-button:hover, .rgsd-change-email-button:hover {
  background: #3a86ff;
  color: white;
  transform: translateY(-2px);
}

.rgsd-subscription-graphic {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
  opacity: 0.3;
}

.rgsd-graphic-element {
  width: 24px;
  height: 280px;
  background: var(--rgsd-rainbow-gradient);
  border-radius: 50%;
  animation: rgsd-spin 20s linear infinite;
}

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

.rgsd-about-section {
  padding: 6rem 2rem;
  background: white;
}

.rgsd-about-container {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.rgsd-about-block {
  padding: 2rem;
}

.rgsd-about-text {
  grid-column: 1;
}

.rgsd-about-text h2 {
  color: #1f2933;
  margin-bottom: 1.5rem;
}

.rgsd-about-text p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.rgsd-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.rgsd-about-feature {
  text-align: center;
  padding: 1.5rem;
  background: #f5f7fb;
  border-radius: 15px;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-about-feature:hover {
  transform: translateY(-5px);
  background: var(--rgsd-ocean-gradient);
  color: white;
}

.rgsd-about-feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.rgsd-about-feature h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.rgsd-about-feature p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.rgsd-about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rgsd-magic-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-about-link:hover {
  transform: translateX(10px);
  box-shadow: var(--rgsd-shadow-medium);
}

.rgsd-about-image {
  grid-column: 2;
  grid-row: 1;
}

.rgsd-about-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  border-radius: 20px;
  box-shadow: var(--rgsd-shadow-medium);
}

.rgsd-about-values {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--rgsd-sunset-gradient);
  color: white;
  border-radius: 25px;
  margin-top: 2rem;
}

.rgsd-about-values h3 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.rgsd-about-values p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.rgsd-values-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.rgsd-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-value-item:hover {
  transform: scale(1.1);
}

.rgsd-value-item i {
  font-size: 3rem;
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.rgsd-value-item span {
  font-weight: 700;
  font-size: 1.1rem;
}

.rgsd-selection-section {
  padding: 6rem 2rem;
  background: var(--rgsd-ocean-gradient);
  position: relative;
}

.rgsd-selection-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/rgsd-engine/rgsd-image/selection-art.webp') center/cover no-repeat;
  opacity: 0.1;
}

.rgsd-selection-content {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.rgsd-selection-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rgsd-selection-content p {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rgsd-selection-criteria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rgsd-criterion-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  color: #1f2933;
  box-shadow: var(--rgsd-shadow-soft);
  transition: var(--rgsd-transition-bounce);
  position: relative;
  overflow: hidden;
}

.rgsd-criterion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rgsd-rainbow-gradient);
  opacity: 0.1;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-criterion-card:hover::before {
  left: 0;
}

.rgsd-criterion-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--rgsd-shadow-strong);
}

.rgsd-criterion-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #3a86ff;
  display: block;
}

.rgsd-criterion-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  min-height: 3.6rem;
}

.rgsd-criterion-card p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

.rgsd-faq-section {
  padding: 6rem 2rem;
  background: white;
}

.rgsd-faq-container {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
}

.rgsd-faq-container h2 {
  text-align: center;
  color: #1f2933;
  margin-bottom: 3rem;
  font-size: 3rem;
}

.rgsd-faq-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.rgsd-faq-block h3 {
  color: #3a86ff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--rgsd-ocean-gradient);
}

.rgsd-faq-item {
  margin-bottom: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-faq-item:hover {
  border-color: #3a86ff;
  box-shadow: var(--rgsd-shadow-soft);
}

.rgsd-faq-question {
  padding: 1.5rem;
  background: #f5f7fb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-faq-question:hover {
  background: #e2e8f0;
}

.rgsd-faq-question i {
  transition: var(--rgsd-transition-smooth);
}

.rgsd-faq-item.active .rgsd-faq-question i {
  transform: rotate(45deg);
}

.rgsd-faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-faq-item.active .rgsd-faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.rgsd-faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.rgsd-faq-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 2px solid #e2e8f0;
}

.rgsd-faq-link {
  background: var(--rgsd-magic-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-faq-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--rgsd-shadow-medium);
}

.rgsd-faq-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rgsd-ocean-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-faq-contact:hover {
  transform: translateX(5px);
  box-shadow: var(--rgsd-shadow-soft);
}

.rgsd-responsible-section {
  padding: 6rem 2rem;
  background: var(--rgsd-magic-gradient);
  color: white;
}

.rgsd-responsible-container {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
  text-align: center;
}

.rgsd-responsible-container h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rgsd-responsible-content {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.rgsd-responsible-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.rgsd-responsible-content a {
  color: #f6bd60;
  font-weight: 700;
  text-decoration: underline;
}

.rgsd-responsible-content a:hover {
  color: white;
}

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

.rgsd-partner-link {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 15px;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-partner-link:hover {
  transform: scale(1.1);
  box-shadow: var(--rgsd-shadow-medium);
}

.rgsd-partner-link img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

.rgsd-age-restriction {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 50%;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-age-restriction:hover {
  transform: rotate(15deg) scale(1.1);
}

.rgsd-age-restriction img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.rgsd-footer-section {
  background: #1f2933;
  color: white;
  padding: 3rem 2rem 1rem;
}

.rgsd-footer-container {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
}

.rgsd-footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #555;
}

.rgsd-footer-brand {
  flex: 1;
}

.rgsd-footer-brand span {
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
  background: var(--rgsd-rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rgsd-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rgsd-footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.rgsd-footer-bottom {
  text-align: center;
  padding-top: 1rem;
  color: #999;
  font-size: 0.9rem;
}

.rgsd-contact-modal, .rgsd-contact-success, .rgsd-age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
}

.rgsd-modal-overlay, .rgsd-success-overlay, .rgsd-age-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.rgsd-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 25px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  box-shadow: var(--rgsd-shadow-strong);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rgsd-contact-modal .rgsd-modal-container::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.rgsd-modal-content {
  flex: 1;
  padding: 3rem;
  box-sizing: border-box;
}

.rgsd-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--rgsd-ocean-gradient);
}

.rgsd-modal-header h2 {
  margin: 0;
  color: #1f2933;
}

.rgsd-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-modal-close:hover {
  color: #d62828;
  transform: rotate(90deg);
}

.rgsd-modal-info {
  flex: 1;
  background: var(--rgsd-magic-gradient);
  color: white;
  padding: 3rem;
  border-radius: 0 25px 25px 0;
  box-sizing: border-box;
}

.rgsd-modal-info h3 {
  margin-bottom: 2rem;
  text-align: center;
}

.rgsd-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.rgsd-info-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: var(--rgsd-transition-smooth);
}

.rgsd-info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.rgsd-info-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.rgsd-info-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.rgsd-info-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.rgsd-contact-success .rgsd-success-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--rgsd-shadow-strong);
}

.rgsd-success-content i {
  font-size: 4rem;
  color: #2d6a4f;
  margin-bottom: 1.5rem;
  display: block;
}

.rgsd-success-content h3 {
  color: #1f2933;
  margin-bottom: 1rem;
}

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

.rgsd-success-email {
  font-weight: 700;
  color: #3a86ff;
}

.rgsd-success-close {
  background: var(--rgsd-ocean-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  cursor: pointer;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-success-close:hover {
  transform: translateY(-3px);
  box-shadow: var(--rgsd-shadow-medium);
}

.rgsd-cookies-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  background: rgba(51, 51, 51, 0.95);
  color: white;
  z-index: 1500;
  padding: 1.5rem 2rem;
}

.rgsd-cookies-container {
  max-width: var(--rgsd-container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.rgsd-cookies-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.rgsd-cookies-content p {
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.rgsd-cookies-content a {
  color: #f6bd60;
  text-decoration: underline;
}

.rgsd-cookies-content a:hover {
  color: white;
}

.rgsd-cookies-accept {
  background: var(--rgsd-ocean-gradient);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  cursor: pointer;
  transition: var(--rgsd-transition-smooth);
  white-space: nowrap;
}

.rgsd-cookies-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--rgsd-shadow-soft);
}

.rgsd-age-modal .rgsd-age-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  width: 90%;
  box-shadow: var(--rgsd-shadow-strong);
  max-height: 90vh;
  overflow-y: auto;
}

.rgsd-age-content h2 {
  color: #1f2933;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.rgsd-age-content p {
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.rgsd-age-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.rgsd-age-confirm {
  background: var(--rgsd-ocean-gradient);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 25px;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  cursor: pointer;
  transition: var(--rgsd-transition-smooth);
  flex: 1;
  max-width: 250px;
}

.rgsd-age-confirm:hover {
  transform: translateY(-3px);
  box-shadow: var(--rgsd-shadow-medium);
}

.rgsd-age-deny {
  background: #d62828;
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 25px;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  cursor: pointer;
  transition: var(--rgsd-transition-smooth);
  flex: 1;
  max-width: 250px;
}

.rgsd-age-deny:hover {
  transform: translateY(-3px);
  box-shadow: var(--rgsd-shadow-medium);
}

.rgsd-age-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.rgsd-age-partners a {
  background: #f5f7fb;
  padding: 0.8rem;
  border-radius: 10px;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-age-partners a:hover {
  transform: scale(1.1);
  background: #e2e8f0;
}

.rgsd-age-partners img {
  width: 80px;
  height: 40px;
  object-fit: contain;
}

.rgsd-age-restriction {
  background: #f5f7fb;
  padding: 0.8rem;
  border-radius: 50%;
  transition: var(--rgsd-transition-smooth);
}

.rgsd-age-restriction:hover {
  transform: rotate(15deg) scale(1.1);
}

.rgsd-age-restriction img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  h1 { font-size: 3rem; min-height: 3.6rem; }
  h2 { font-size: 2.4rem; min-height: 2.9rem; }
  h3 { font-size: 1.8rem; min-height: 2.2rem; }
  
  .rgsd-selection-criteria {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rgsd-modal-container {
    flex-direction: column;
    max-height: 95vh;
  }
  
  .rgsd-modal-info {
    border-radius: 0 0 25px 25px;
  }
}

@media (max-width: 768px) {
  .rgsd-navigation-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--rgsd-electric-gradient);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--rgsd-shadow-medium);
  }
  
  .rgsd-navigation-menu.active {
    display: flex;
  }
  
  .rgsd-navigation-toggle {
    display: block;
  }
  
  .rgsd-navigation-container {
    padding: 1rem;
  }
  
  .rgsd-welcome-text h1 {
    font-size: 2.5rem;
  }
  
  .rgsd-welcome-features {
    flex-direction: column;
    align-items: center;
  }
  
  .rgsd-feature-card {
    max-width: 100%;
  }
  
  .rgsd-about-container {
    grid-template-columns: 1fr;
  }
  
  .rgsd-about-image {
    grid-column: 1;
    grid-row: 2;
  }
  
  .rgsd-about-features {
    grid-template-columns: 1fr;
  }
  
  .rgsd-selection-criteria {
    grid-template-columns: 1fr;
  }
  
  .rgsd-faq-blocks {
    grid-template-columns: 1fr;
  }
  
  .rgsd-footer-main {
    flex-direction: column;
    gap: 2rem;
  }
  
  .rgsd-footer-links {
    grid-template-columns: 1fr 1fr;
  }
  
  .rgsd-info-cards {
    grid-template-columns: 1fr;
  }
  
  .rgsd-age-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .rgsd-age-confirm, .rgsd-age-deny {
    max-width: 100%;
  }
  
  .rgsd-cookies-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .rgsd-welcome-section, .rgsd-platforms-section, .rgsd-subscription-section,
  .rgsd-about-section, .rgsd-selection-section, .rgsd-faq-section,
  .rgsd-responsible-section {
    padding: 6rem 0.5rem;
  }
  
  h1 { font-size: 2.2rem; min-height: 2.6rem; }
  h2 { font-size: 2rem; min-height: 2.4rem; }
  h3 { font-size: 1.6rem; min-height: 1.9rem; }
  
  .rgsd-welcome-text h1 {
    font-size: 2rem;
  }
  
  .rgsd-subscription-container {
    flex-direction: column;
    gap: 2rem;
  }

  .rgsd-subscription-graphic {
    display: none;
  }
  
  .rgsd-subscription-form-container {
    padding: 2rem 1rem;
  }

  .rgsd-selection-content h2 {
    font-size: 2rem;
  }
  
  .rgsd-footer-links {
    grid-template-columns: 1fr;
  }
  
  .rgsd-faq-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .rgsd-responsible-partners {
    flex-direction: column;
  }
  
  .rgsd-platform-header {
    padding: 1.5rem;
  }
  
  .rgsd-platform-content {
    padding: 1.5rem;
  }
  
  .rgsd-payment-methods {
    justify-content: center;
  }

  .rgsd-responsible-container h2 {
    font-size: 1.9rem;
  }
  
  .rgsd-modal-content, .rgsd-modal-info {
    padding: 2rem 0.2rem;
  }
  
  .rgsd-age-container {
    padding: 2rem 1rem;
  }

  .rgsd-age-content h2 {
    font-size: 1.7rem;
  }
  
  .rgsd-age-partners {
    flex-direction: column;
  }
}

@media (max-width: 320px) {
  .rgsd-welcome-section, .rgsd-platforms-section, .rgsd-subscription-section,
  .rgsd-about-section, .rgsd-selection-section, .rgsd-faq-section,
  .rgsd-responsible-section {
    padding: 6rem 0.3rem;
  }
  
  h1 { font-size: 1.8rem; min-height: 2.2rem; }
  h2 { font-size: 1.6rem; min-height: 1.9rem; }
  h3 { font-size: 1.3rem; min-height: 1.6rem; }
  
  .rgsd-feature-card, .rgsd-criterion-card, .rgsd-platform-card {
    padding: 1.5rem 1rem;
  }
  
  .rgsd-values-list {
    gap: 1.5rem;
  }
  
  .rgsd-value-item i {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

.gftpgs_privacy-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #2a6f97 0%, #3d405b 100%);
}

.gftpgs_privacy-hero {
  padding: 8rem 2rem 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  color: white;
}

.gftpgs_privacy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gftpgs_privacy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: gftpgs_title-float 3s ease-in-out infinite;
}

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

.gftpgs_privacy-intro {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.gftpgs_privacy-content {
  padding: 4rem 2rem;
}

.gftpgs_privacy-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.gftpgs_privacy-article {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.gftpgs_privacy-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.6s ease;
}

.gftpgs_privacy-article:hover::before {
  left: 100%;
}

.gftpgs_privacy-article:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.gftpgs_privacy-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #2a6f97;
}

.gftpgs_privacy-header i {
  font-size: 3rem;
  color: #2a6f97;
  background: rgba(102, 126, 234, 0.1);
  padding: 1rem;
  border-radius: 15px;
}

.gftpgs_privacy-header h2 {
  color: #1f2933;
  font-size: 2.2rem;
  margin: 0;
}

.gftpgs_privacy-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.gftpgs_privacy-list {
  list-style: none;
  margin: 2rem 0;
}

.gftpgs_privacy-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 0.8rem;
  background: #f5f7fb;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.gftpgs_privacy-list li:hover {
  background: #e2e8f0;
  border-left-color: #2a6f97;
  transform: translateX(10px);
}

.gftpgs_privacy-list li i {
  color: #2a6f97;
  font-size: 1.2rem;
  min-width: 20px;
}

.gftpgs_privacy-list li:last-child {
  margin-bottom: 0;
}

.gftpgs_privacy-text a {
  color: #2a6f97;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gftpgs_privacy-text a:hover {
  color: #3d405b;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gftpgs_privacy-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .gftpgs_privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .gftpgs_privacy-content {
    padding: 2rem 1rem;
  }
  
  .gftpgs_privacy-article {
    padding: 2rem 1.5rem;
  }
  
  .gftpgs_privacy-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .gftpgs_privacy-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .gftpgs_privacy-hero h1 {
    font-size: 1.8rem;
  }
  
  .gftpgs_privacy-intro {
    font-size: 1.1rem;
  }
  
  .gftpgs_privacy-article {
    padding: 1.5rem 1rem;
  }
  
  .gftpgs_privacy-header i {
    font-size: 2.5rem;
  }
  
  .gftpgs_privacy-header h2 {
    font-size: 1.5rem;
  }
  
  .gftpgs_privacy-list li {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .gftpgs_privacy-text a {
    font-size: 0.9rem;
  }
}

.gftpgs_terms-main {
  min-height: 100vh;
  background: linear-gradient(45deg, #e3645b 0%, #f4a261 100%);
}

.gftpgs_terms-hero {
  padding: 8rem 2rem 4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.gftpgs_terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/rgsd-engine/rgsd-image/terms-art.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.gftpgs_terms-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gftpgs_terms-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: gftpgs_terms-pulse 2s ease-in-out infinite alternate;
}

@keyframes gftpgs_terms-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.gftpgs_terms-intro {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 500;
}

.gftpgs_terms-content {
  padding: 5rem 2rem;
}

.gftpgs_terms-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
}

.gftpgs_terms-article {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.gftpgs_terms-article::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e3645b, #f4a261, #f6d39b);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.gftpgs_terms-article:hover::after {
  transform: scaleX(1);
}

.gftpgs_terms-article:hover {
  transform: translateY(-15px) rotate(0.5deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 107, 107, 0.3);
}

.gftpgs_terms-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 4px solid #e3645b;
  position: relative;
}

.gftpgs_terms-header::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #e3645b, #f4a261);
  border-radius: 2px;
}

.gftpgs_terms-header i {
  font-size: 3.5rem;
  color: #e3645b;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 163, 107, 0.1));
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.4s ease;
}

.gftpgs_terms-article:hover .gftpgs_terms-header i {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.gftpgs_terms-header h2 {
  color: #1f2933;
  font-size: 2.5rem;
  margin: 0;
  background: linear-gradient(135deg, #e3645b, #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gftpgs_terms-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  text-align: justify;
}

.gftpgs_terms-list {
  list-style: none;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gftpgs_terms-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #f5f7fb, #e2e8f0);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.gftpgs_terms-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
  transition: left 0.6s ease;
}

.gftpgs_terms-list li:hover::before {
  left: 100%;
}

.gftpgs_terms-list li:hover {
  background: linear-gradient(135deg, #f7f1ed, #f6ede7);
  border-left-color: #e3645b;
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.gftpgs_terms-list li i {
  color: #e3645b;
  font-size: 1.3rem;
  min-width: 25px;
  text-align: center;
}

.gftpgs_terms-text a {
  color: #e3645b;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.gftpgs_terms-text a:hover {
  color: #f77f00;
  border-bottom-color: #e3645b;
}

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

@media (max-width: 768px) {
  .gftpgs_terms-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .gftpgs_terms-hero h1 {
    font-size: 2.8rem;
  }
  
  .gftpgs_terms-content {
    padding: 3rem 1rem;
  }
  
  .gftpgs_terms-article {
    padding: 2.5rem 2rem;
  }
  
  .gftpgs_terms-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .gftpgs_terms-header h2 {
    font-size: 2rem;
  }
  
  .gftpgs_terms-header i {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .gftpgs_terms-hero h1 {
    font-size: 2rem;
  }
  
  .gftpgs_terms-intro {
    font-size: 1.1rem;
  }
  
  .gftpgs_terms-article {
    padding: 2rem 1.5rem;
  }
  
  .gftpgs_terms-header h2 {
    font-size: 1.7rem;
  }
  
  .gftpgs_terms-header i {
    font-size: 2.5rem;
    padding: 1rem;
  }
  
  .gftpgs_terms-list li {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .gftpgs_terms-text a {
    font-size: 1rem;
  }
}

.gftpgs_cookies-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #38bdf8 0%, #76c893 100%);
}

.gftpgs_cookies-hero {
  padding: 8rem 2rem 4rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.gftpgs_cookies-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gftpgs_cookies-float 20s linear infinite;
  z-index: -1;
}

@keyframes gftpgs_cookies-float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.gftpgs_cookies-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gftpgs_cookies-hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: gftpgs_cookies-bounce 3s ease-in-out infinite;
}

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

.gftpgs_cookies-intro {
  font-size: 1.35rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 500;
}

.gftpgs_cookies-content {
  padding: 4rem 2rem;
}

.gftpgs_cookies-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3.5rem;
}

.gftpgs_cookies-article {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3.5rem;
  box-shadow: 0 20px 60px rgba(79, 172, 254, 0.2);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.gftpgs_cookies-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(79, 172, 254, 0.05) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gftpgs_cookies-article:hover::before {
  opacity: 1;
}

.gftpgs_cookies-article:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(79, 172, 254, 0.3);
  border-color: rgba(79, 172, 254, 0.3);
}

.gftpgs_cookies-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid #38bdf8;
  position: relative;
}

.gftpgs_cookies-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #76c893);
  border-radius: 3px;
}

.gftpgs_cookies-header i {
  font-size: 3.2rem;
  color: #38bdf8;
  background: rgba(79, 172, 254, 0.1);
  padding: 1.3rem;
  border-radius: 18px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gftpgs_cookies-header i::before {
  position: relative;
  z-index: 2;
}

.gftpgs_cookies-header i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(79, 172, 254, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.gftpgs_cookies-article:hover .gftpgs_cookies-header i::after {
  width: 100%;
  height: 100%;
}

.gftpgs_cookies-article:hover .gftpgs_cookies-header i {
  transform: rotate(-10deg) scale(1.1);
  color: #76c893;
}

.gftpgs_cookies-header h2 {
  color: #1f2933;
  font-size: 2.3rem;
  margin: 0;
  background: linear-gradient(135deg, #38bdf8, #76c893);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gftpgs_cookies-text p {
  color: #555;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1.12rem;
  text-align: justify;
}

.gftpgs_cookies-list {
  list-style: none;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

.gftpgs_cookies-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  background: linear-gradient(135deg, #f5f7fb, #edf2f6);
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.gftpgs_cookies-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #38bdf8, #76c893);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.gftpgs_cookies-list li:hover::before {
  transform: scaleY(1);
}

.gftpgs_cookies-list li:hover {
  background: linear-gradient(135deg, #ffffff, #f5f7fb);
  border-color: rgba(79, 172, 254, 0.3);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(79, 172, 254, 0.15);
}

.gftpgs_cookies-list li i {
  color: #38bdf8;
  font-size: 1.25rem;
  min-width: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.gftpgs_cookies-list li:hover i {
  color: #76c893;
  transform: scale(1.2);
}

.gftpgs_cookies-text a {
  font-size: 0.7rem;
  color: #38bdf8;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  background: rgba(79, 172, 254, 0.1);
}

.gftpgs_cookies-text a:hover {
  color: #76c893;
  background: rgba(79, 172, 254, 0.2);
  text-decoration: none;
}

@media (max-width: 768px) {
  .gftpgs_cookies-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .gftpgs_cookies-hero h1 {
    font-size: 2.6rem;
  }
  
  .gftpgs_cookies-content {
    padding: 3rem 1rem;
  }
  
  .gftpgs_cookies-article {
    padding: 2.5rem 2rem;
  }
  
  .gftpgs_cookies-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .gftpgs_cookies-header h2 {
    font-size: 2rem;
  }
  
  .gftpgs_cookies-header i {
    font-size: 2.8rem;
  }
  
  .gftpgs_cookies-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gftpgs_cookies-hero h1 {
    font-size: 2.1rem;
  }
  
  .gftpgs_cookies-intro {
    font-size: 1.1rem;
  }
  
  .gftpgs_cookies-article {
    padding: 2rem 1.5rem;
  }
  
  .gftpgs_cookies-header h2 {
    font-size: 1.7rem;
  }
  
  .gftpgs_cookies-header i {
    font-size: 2.3rem;
    padding: 1rem;
  }
  
  .gftpgs_cookies-list li {
    padding: 1.1rem 1.3rem;
    font-size: 0.95rem;
  }
}

.gftpgs_responsible-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #2a6f97 0%, #3d405b 100%);
}

.gftpgs_responsible-hero {
  padding: 8rem 2rem 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.gftpgs_responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/rgsd-engine/rgsd-image/responsible-art.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.gftpgs_responsible-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gftpgs_responsible-hero h1 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  animation: gftpgs_responsible-glow 2s ease-in-out infinite alternate;
}

@keyframes gftpgs_responsible-glow {
  0% { text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4); }
  100% { text-shadow: 3px 3px 20px rgba(255, 255, 255, 0.6), 3px 3px 30px rgba(255, 255, 255, 0.4); }
}

.gftpgs_responsible-intro {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 500;
}

.gftpgs_responsible-content {
  padding: 5rem 2rem;
}

.gftpgs_responsible-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.gftpgs_responsible-article {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.gftpgs_responsible-article::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(102, 126, 234, 0.1), transparent 30%);
  animation: gftpgs_responsible-rotate 6s linear infinite;
  z-index: 0;
}

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

.gftpgs_responsible-article:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 70px rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.4);
}

.gftpgs_responsible-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #2a6f97;
  position: relative;
  z-index: 1;
}

.gftpgs_responsible-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2a6f97, #3d405b);
  border-radius: 3px;
}

.gftpgs_responsible-header i {
  font-size: 3rem;
  color: #2a6f97;
  background: rgba(102, 126, 234, 0.1);
  padding: 1.2rem;
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.gftpgs_responsible-article:hover .gftpgs_responsible-header i {
  transform: scale(1.2) rotate(10deg);
  background: rgba(102, 126, 234, 0.2);
  color: #3d405b;
}

.gftpgs_responsible-header h2 {
  color: #1f2933;
  font-size: 2.2rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.gftpgs_responsible-text {
  position: relative;
  z-index: 1;
}

.gftpgs_responsible-text p {
  color: #555;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.gftpgs_responsible-list {
  list-style: none;
  margin: 2rem 0;
}

.gftpgs_responsible-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #f5f7fb, #edf2f6);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.gftpgs_responsible-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.6s ease;
}

.gftpgs_responsible-list li:hover::before {
  left: 100%;
}

.gftpgs_responsible-list li:hover {
  background: linear-gradient(135deg, #ffffff, #f5f7fb);
  border-left-color: #2a6f97;
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.gftpgs_responsible-list li i {
  color: #2a6f97;
  font-size: 1.3rem;
  min-width: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.gftpgs_responsible-list li:hover i {
  color: #3d405b;
  transform: scale(1.2);
}

.gftpgs_responsible-text a {
  color: #2a6f97;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: rgba(102, 126, 234, 0.1);
}

.gftpgs_responsible-text a:hover {
  color: #3d405b;
  background: rgba(102, 126, 234, 0.2);
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .gftpgs_responsible-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .gftpgs_responsible-hero h1 {
    font-size: 3rem;
  }
  
  .gftpgs_responsible-content {
    padding: 3rem 1rem;
  }
  
  .gftpgs_responsible-article {
    padding: 2.5rem 2rem;
  }
  
  .gftpgs_responsible-header {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  
  .gftpgs_responsible-header h2 {
    font-size: 1.9rem;
  }
  
  .gftpgs_responsible-header i {
    font-size: 2.7rem;
  }
}

@media (max-width: 480px) {
  .gftpgs_responsible-hero h1 {
    font-size: 2.3rem;
  }
  
  .gftpgs_responsible-intro {
    font-size: 1.1rem;
  }
  
  .gftpgs_responsible-article {
    padding: 2rem 1.5rem;
  }
  
  .gftpgs_responsible-header h2 {
    font-size: 1.6rem;
  }
  
  .gftpgs_responsible-header i {
    font-size: 2.2rem;
    padding: 1rem;
  }
  
  .gftpgs_responsible-list li {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .gftpgs_responsible-text a {
    font-size: 0.7rem;
  }
}

.gftpgs_about-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #2a6f97 0%, #3d405b 100%);
}

.gftpgs_about-hero {
  padding: 8rem 2rem 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  text-align: center;
  color: white;
}

.gftpgs_about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gftpgs_about-hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: gftpgs_about-title 3s ease-in-out infinite;
}

@keyframes gftpgs_about-title {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.gftpgs_about-intro {
  font-size: 1.4rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
}

.gftpgs_journey-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.95);
}

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

.gftpgs_journey-content h2 {
  color: #1f2933;
  font-size: 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #2a6f97, #3d405b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gftpgs_journey-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.gftpgs_journey-milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.gftpgs_milestone {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f5f7fb;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.gftpgs_milestone:hover {
  transform: translateY(-10px);
  background: white;
  border-color: #2a6f97;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.gftpgs_milestone i {
  font-size: 3rem;
  color: #2a6f97;
  margin-bottom: 1rem;
  display: block;
}

.gftpgs_milestone h3 {
  color: #1f2933;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.gftpgs_milestone p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.gftpgs_journey-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gftpgs_graphic-element {
  position: relative;
  width: 300px;
  height: 300px;
}

.gftpgs_circle {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: gftpgs_rotate 10s linear infinite;
}

.gftpgs_circle-1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-color: #2a6f97;
  border-right-color: #3d405b;
  animation-duration: 15s;
}

.gftpgs_circle-2 {
  top: 20px;
  left: 20px;
  width: 260px;
  height: 260px;
  border-bottom-color: #2a6f97;
  border-left-color: #3d405b;
  animation-duration: 12s;
  animation-direction: reverse;
}

.gftpgs_circle-3 {
  top: 40px;
  left: 40px;
  width: 220px;
  height: 220px;
  border-top-color: #3d405b;
  border-right-color: #2a6f97;
  animation-duration: 18s;
}

.gftpgs_circle-4 {
  top: 60px;
  left: 60px;
  width: 180px;
  height: 180px;
  border-bottom-color: #3d405b;
  border-left-color: #2a6f97;
  animation-duration: 14s;
  animation-direction: reverse;
}

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

.gftpgs_about-details {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f5f7fb 0%, #e2e8f0 100%);
}

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

.gftpgs_about-article {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.gftpgs_about-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.gftpgs_about-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #2a6f97;
}

.gftpgs_about-header i {
  font-size: 3rem;
  color: #2a6f97;
  background: rgba(102, 126, 234, 0.1);
  padding: 1rem;
  border-radius: 15px;
}

.gftpgs_about-header h2 {
  color: #1f2933;
  font-size: 2.2rem;
  margin: 0;
}

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

.gftpgs_about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gftpgs_about-feature {
  text-align: center;
  padding: 1.5rem;
  background: #f5f7fb;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.gftpgs_about-feature:hover {
  background: #2a6f97;
  color: white;
  transform: scale(1.05);
}

.gftpgs_about-feature:hover i,
.gftpgs_about-feature:hover h4,
.gftpgs_about-feature:hover p {
  color: white;
}

.gftpgs_about-feature i {
  font-size: 2.5rem;
  color: #2a6f97;
  margin-bottom: 1rem;
  display: block;
}

.gftpgs_about-feature h4 {
  color: #1f2933;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.gftpgs_about-feature p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.gftpgs_values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gftpgs_value-card {
  text-align: center;
  padding: 2rem 1rem;
  background: #f5f7fb;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.gftpgs_value-card:hover {
  background: #2a6f97;
  color: white;
  transform: translateY(-5px);
}

.gftpgs_value-card:hover i,
.gftpgs_value-card:hover h4,
.gftpgs_value-card:hover p {
  color: white;
}

.gftpgs_value-card i {
  font-size: 2.5rem;
  color: #2a6f97;
  margin-bottom: 1rem;
  display: block;
}

.gftpgs_value-card h4 {
  color: #1f2933;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.gftpgs_value-card p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

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

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

.gftpgs_step:hover {
  background: #2a6f97;
  color: white;
  transform: translateX(10px);
}

.gftpgs_step:hover .gftpgs_step-number,
.gftpgs_step:hover .gftpgs_step-content h4,
.gftpgs_step:hover .gftpgs_step-content p {
  color: white;
}

.gftpgs_step-number {
  width: 50px;
  height: 50px;
  background: #2a6f97;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.gftpgs_step-content h4 {
  color: #1f2933;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.gftpgs_step-content p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.gftpgs_team-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.gftpgs_stat {
  text-align: center;
  padding: 2rem 1rem;
  background: #f5f7fb;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.gftpgs_stat:hover {
  background: #2a6f97;
  color: white;
  transform: scale(1.1);
}

.gftpgs_stat:hover i,
.gftpgs_stat:hover .gftpgs_stat-number,
.gftpgs_stat:hover .gftpgs_stat-label {
  color: white;
}

.gftpgs_stat i {
  font-size: 2.5rem;
  color: #2a6f97;
  margin-bottom: 1rem;
  display: block;
}

.gftpgs_stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2933;
  margin-bottom: 0.5rem;
}

.gftpgs_stat-label {
  color: #666;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .gftpgs_journey-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .gftpgs_about-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gftpgs_about-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .gftpgs_about-hero h1 {
    font-size: 2.8rem;
  }
  
  .gftpgs_journey-section,
  .gftpgs_about-details {
    padding: 4rem 1rem;
  }
  
  .gftpgs_journey-milestones {
    grid-template-columns: 1fr;
  }
  
  .gftpgs_about-features,
  .gftpgs_values-grid,
  .gftpgs_team-stats {
    grid-template-columns: 1fr;
  }
  
  .gftpgs_about-article {
    padding: 2rem 0.5rem;
  }
  
  .gftpgs_about-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .gftpgs_about-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .gftpgs_about-hero h1 {
    font-size: 2rem;
  }
  
  .gftpgs_about-intro {
    font-size: 1.1rem;
  }

  .gftpgs_journey-section,
  .gftpgs_about-details {
    padding: 4rem 0.2rem;
  }

  .gftpgs_journey-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .gftpgs_journey-content p {
    font-size: 1rem;
    text-align: center;
  }
  
  .gftpgs_graphic-element {
    width: 190px;
    height: 190px;
  }
  
  .gftpgs_circle-2 {
    width: 170px;
    height: 170px;
  }
  
  .gftpgs_circle-3 {
    width: 160px;
    height: 160px;
  }
  
  .gftpgs_circle-4 {
    width: 130px;
    height: 130px;
  }
}

.gftpgs_faq-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #2a6f97 0%, #3d405b 100%);
}

.gftpgs_faq-hero {
  padding: 8rem 2rem 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  text-align: center;
  color: white;
}

.gftpgs_faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gftpgs_faq-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation: gftpgs_faq-title 2s ease-in-out infinite alternate;
}

@keyframes gftpgs_faq-title {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.gftpgs_faq-intro {
  font-size: 1.4rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
}

.gftpgs_faq-visual {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.95);
}

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

.gftpgs_faq-graphic {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gftpgs_faq-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a6f97, #3d405b);
  animation: gftpgs_orb-float 6s ease-in-out infinite;
}

.gftpgs_orb-1 {
  width: 120px;
  height: 120px;
  top: 50px;
  left: 50px;
  animation-delay: 0s;
}

.gftpgs_orb-2 {
  width: 80px;
  height: 80px;
  top: 200px;
  right: 80px;
  animation-delay: 1.5s;
}

.gftpgs_orb-3 {
  width: 100px;
  height: 100px;
  bottom: 80px;
  left: 100px;
  animation-delay: 3s;
}

.gftpgs_orb-4 {
  width: 60px;
  height: 60px;
  top: 100px;
  right: 150px;
  animation-delay: 4.5s;
}

@keyframes gftpgs_orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

.gftpgs_faq-visual-content h2 {
  color: #1f2933;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2a6f97, #3d405b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gftpgs_faq-visual-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

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

.gftpgs_faq-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: #f5f7fb;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.gftpgs_faq-stat:hover {
  background: #2a6f97;
  color: white;
  transform: translateY(-10px);
}

.gftpgs_faq-stat:hover i,
.gftpgs_faq-stat:hover span,
.gftpgs_faq-stat:hover p {
  color: white;
}

.gftpgs_faq-stat i {
  font-size: 3rem;
  color: #2a6f97;
  margin-bottom: 1rem;
  display: block;
}

.gftpgs_faq-stat span {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2933;
  margin-bottom: 0.5rem;
}

.gftpgs_faq-stat p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

.gftpgs_faq-content {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f5f7fb 0%, #e2e8f0 100%);
}

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

.gftpgs_faq-category h3 {
  color: #1f2933;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #2a6f97;
}

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

.gftpgs_faq-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gftpgs_faq-item:hover {
  border-color: #2a6f97;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  transform: translateY(-5px);
}

.gftpgs_faq-question {
  padding: 1.5rem 2rem;
  background: #f5f7fb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2933;
  transition: all 0.3s ease;
}

.gftpgs_faq-question:hover {
  background: #2a6f97;
  color: white;
}

.gftpgs_faq-question i {
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.gftpgs_faq-item.active .gftpgs_faq-question i {
  transform: rotate(45deg);
}

.gftpgs_faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(-10px);
}

.gftpgs_faq-item.active .gftpgs_faq-answer {
  padding: 2rem;
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}

.gftpgs_faq-question i {
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.gftpgs_faq-item.active .gftpgs_faq-question i {
  transform: rotate(45deg);
}

.gftpgs_faq-answer p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.gftpgs_faq-answer a {
  color: #2a6f97;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gftpgs_faq-answer a:hover {
  color: #3d405b;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .gftpgs_faq-visual-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .gftpgs_faq-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gftpgs_faq-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .gftpgs_faq-hero h1 {
    font-size: 2.8rem;
  }
  
  .gftpgs_faq-visual,
  .gftpgs_faq-content {
    padding: 4rem 1rem;
  }
  
  .gftpgs_faq-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gftpgs_faq-graphic {
    height: 300px;
  }
  
  .gftpgs_orb-1 {
    width: 80px;
    height: 80px;
  }
  
  .gftpgs_orb-2 {
    width: 60px;
    height: 60px;
  }
  
  .gftpgs_orb-3 {
    width: 70px;
    height: 70px;
  }
  
  .gftpgs_orb-4 {
    width: 50px;
    height: 50px;
  }
  
  .gftpgs_faq-visual-content h2 {
    font-size: 2.2rem;
  }
  
  .gftpgs_faq-category h3 {
    font-size: 1.8rem;
  }
  
  .gftpgs_faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
  
  .gftpgs_faq-item.active .gftpgs_faq-answer {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gftpgs_faq-hero h1 {
    font-size: 2.2rem;
  }
  
  .gftpgs_faq-intro {
    font-size: 1.1rem;
  }
  
  .gftpgs_faq-stat {
    padding: 1.5rem 1rem;
  }
  
  .gftpgs_faq-stat i {
    font-size: 2.5rem;
  }
  
  .gftpgs_faq-stat span {
    font-size: 2rem;
  }
}

.gftpgs_404-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #2a6f97 0%, #3d405b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gftpgs_404-hero {
  padding: 4rem 2rem;
  width: 100%;
}

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

.gftpgs_404-content {
  text-align: center;
  color: white;
}

.gftpgs_404-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.gftpgs_404-number {
  font-size: 8rem;
  font-weight: bold;
  color: white;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  animation: gftpgs_404-pulse 2s ease-in-out infinite alternate;
}

@keyframes gftpgs_404-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.gftpgs_404-orb {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: gftpgs_404-rotate 4s linear infinite;
  position: relative;
}

.gftpgs_404-orb::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: conic-gradient(transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: gftpgs_404-orb-rotate 3s linear infinite;
  z-index: -1;
}

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

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

.gftpgs_404-orb i {
  font-size: 3rem;
  color: white;
  animation: gftpgs_404-search 2s ease-in-out infinite alternate;
}

@keyframes gftpgs_404-search {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.2) rotate(10deg); }
}

.gftpgs_404-content h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.gftpgs_404-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.gftpgs_404-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

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

.gftpgs_404-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gftpgs_404-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.gftpgs_404-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gftpgs_404-suggestions {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gftpgs_404-suggestions h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.gftpgs_404-links a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.gftpgs_404-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(10px);
}

.gftpgs_404-links a i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .gftpgs_404-hero {
    padding: 2rem 1rem;
  }
  
  .gftpgs_404-graphic {
    gap: 1rem;
  }
  
  .gftpgs_404-number {
    font-size: 5rem;
  }
  
  .gftpgs_404-orb {
    width: 80px;
    height: 80px;
  }
  
  .gftpgs_404-orb i {
    font-size: 2rem;
  }
  
  .gftpgs_404-content h1 {
    font-size: 2.5rem;
  }
  
  .gftpgs_404-text {
    font-size: 1.1rem;
  }
  
  .gftpgs_404-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .gftpgs_404-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .gftpgs_404-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gftpgs_404-number {
    font-size: 4rem;
  }
  
  .gftpgs_404-orb {
    width: 60px;
    height: 60px;
  }
  
  .gftpgs_404-orb i {
    font-size: 1.5rem;
  }
  
  .gftpgs_404-content h1 {
    font-size: 2rem;
  }
  
  .gftpgs_404-text {
    font-size: 1rem;
  }
  
  .gftpgs_404-suggestions {
    padding: 1.5rem;
  }
}
