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

:root {
  --sa-color-gradient-start: #6a11cb;
  --sa-color-gradient-middle: #2575fc;
  --sa-color-gradient-end: #00d2ff;
  --sa-color-accent-coral: #ff6b6b;
  --sa-color-accent-mint: #4ecdc4;
  --sa-color-accent-sunshine: #ffe66d;
  --sa-color-accent-blush: #ff9ff3;
  --sa-color-accent-sky: #54a0ff;
  --sa-color-text-primary: #2d3748;
  --sa-color-text-secondary: #4a5568;
  --sa-color-background-light: #f7fafc;
  --sa-color-background-white: #ffffff;
  --sa-color-border-light: #e2e8f0;
  --sa-shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --sa-shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --sa-shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --sa-border-radius-small: 8px;
  --sa-border-radius-medium: 12px;
  --sa-border-radius-large: 16px;
  --sa-transition-fast: 0.2s ease;
  --sa-transition-medium: 0.3s ease;
  --sa-transition-slow: 0.5s ease;
}

body {
  font-family: 'Rubik', sans-serif;
  color: var(--sa-color-text-primary);
  background-color: var(--sa-color-background-light);
  line-height: 1.6;
}

.sa-navigation-container {
  background: linear-gradient(135deg, var(--sa-color-gradient-start), var(--sa-color-gradient-middle));
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--sa-shadow-medium);
}

.sa-navigation-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.sa-navigation-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sa-navigation-logo img {
  width: 100%;
  max-width: 50px;
  height: 100%;
  max-height: 50px;
  transition: transform var(--sa-transition-medium);
}

.sa-navigation-logo:hover img {
  transform: scale(1.1);
}

.sa-navigation-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: white;
  font-size: 1.5rem;
}

.sa-navigation-menu {
  display: flex;
}

.sa-navigation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.sa-navigation-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--sa-border-radius-small);
  transition: all var(--sa-transition-fast);
  position: relative;
  overflow: hidden;
}

.sa-navigation-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sa-color-accent-sunshine);
  transition: width var(--sa-transition-medium);
}

.sa-navigation-link:hover::before {
  width: 100%;
}

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

.sa-navigation-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
}

.sa-navigation-toggle-line {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all var(--sa-transition-medium);
}

.sa-hero-section {
  background: linear-gradient(135deg, var(--sa-color-gradient-start), var(--sa-color-gradient-middle));
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sa-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sa-hero-background svg {
  width: 100%;
  height: 100%;
  animation: sa-hero-float 20s ease-in-out infinite;
}

@keyframes sa-hero-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.sa-hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  color: white;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.sa-hero-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sa-hero-title-appear 1s ease-out;
}

@keyframes sa-hero-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sa-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: sa-hero-subtitle-appear 1s ease-out 0.3s both;
  min-height: 1.5rem;
}

@keyframes sa-hero-subtitle-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.sa-hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: var(--sa-border-radius-large);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: sa-hero-highlight-pulse 2s ease-in-out infinite;
}

@keyframes sa-hero-highlight-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.sa-hero-prize {
  font-size: 1.5rem;
  font-weight: 700;
}

.sa-hero-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.sa-hero-timer-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: var(--sa-border-radius-medium);
  backdrop-filter: blur(10px);
  min-width: 100px;
  animation: sa-hero-timer-appear 1s ease-out 0.6s both;
}

@keyframes sa-hero-timer-appear {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.sa-hero-timer-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Merriweather', serif;
}

.sa-hero-timer-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.sa-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sa-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: var(--sa-border-radius-large);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--sa-transition-medium);
  position: relative;
  overflow: hidden;
}

.sa-hero-button-primary {
  background: var(--sa-color-accent-sunshine);
  color: var(--sa-color-text-primary);
}

.sa-hero-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.sa-hero-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--sa-shadow-large);
}

.sa-packages-section {
  padding: 6rem 2rem;
  background: var(--sa-color-background-white);
}

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

.sa-packages-title {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--sa-color-text-primary);
  min-height: 3rem;
}

.sa-packages-description {
  text-align: center;
  color: var(--sa-color-text-secondary);
  margin-bottom: 3rem;
  font-size: 1.125rem;
  min-height: 1.5rem;
}

.sa-packages-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1350px;
  margin: 0 auto;
}

.sa-package-card {
  width: 100%;
  max-width: 1350px;
  background: white;
  border-radius: var(--sa-border-radius-large);
  padding: 2.5rem;
  box-shadow: var(--sa-shadow-soft);
  transition: all var(--sa-transition-medium);
  border: 1px solid var(--sa-color-border-light);
  position: relative;
  overflow: hidden;
}

.sa-package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sa-color-gradient-start), var(--sa-color-gradient-end));
}

.sa-package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sa-shadow-large);
}

.sa-package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sa-package-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--sa-color-gradient-start), var(--sa-color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sa-package-name {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: var(--sa-color-text-primary);
  min-height: 2rem;
}

.sa-package-content {
  text-align: center;
}

.sa-package-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--sa-color-text-primary);
}

.sa-package-price {
  margin-bottom: 0.5rem;
}

.sa-package-amount {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sa-color-gradient-start);
  display: block;
}

.sa-package-period {
  color: var(--sa-color-text-secondary);
  font-size: 0.875rem;
}

.sa-package-description {
  color: var(--sa-color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
  min-height: 3rem;
}

.sa-package-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--sa-color-gradient-start), var(--sa-color-gradient-middle));
  color: white;
  text-decoration: none;
  border-radius: var(--sa-border-radius-medium);
  font-weight: 600;
  transition: all var(--sa-transition-medium);
  width: 100%;
  justify-content: center;
}

.sa-package-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--sa-shadow-medium);
}

.sa-responsibility-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--sa-color-background-light), #e2e8f0);
}

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

.sa-responsibility-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--sa-color-text-primary);
  min-height: 2.5rem;
}

.sa-responsibility-description {
  color: var(--sa-color-text-secondary);
  margin-bottom: 3rem;
  font-size: 1.125rem;
  min-height: 1.5rem;
}

.sa-responsibility-partners {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.sa-responsibility-partner {
  display: inline-block;
  transition: transform var(--sa-transition-medium);
  padding: 1rem;
  background: white;
  border-radius: var(--sa-border-radius-medium);
  box-shadow: var(--sa-shadow-soft);
}

.sa-responsibility-partner:hover {
  transform: scale(1.05);
}

.sa-responsibility-partner img {
  width: 100%;
  max-width: 280px;
  height: 100%;
  min-height: 80px;
  max-height: 80px;
  text-align: center;
}

.sa-footer-container {
  background: linear-gradient(135deg, #2d3748, #4a5568);
  color: white;
  padding: 3rem 2rem 1rem;
}

.sa-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sa-footer-section {
  text-align: center;
}

.sa-footer-title {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.sa-footer-description {
  opacity: 0.8;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
  min-height: 3rem;
}

.sa-footer-age {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.sa-footer-responsibility {
  opacity: 0.8;
  max-width: 300px;
  margin: 0 auto;
  min-height: 2.5rem;
}

.sa-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.sa-footer-link {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--sa-transition-fast);
}

.sa-footer-link:hover {
  opacity: 1;
}

.sa-footer-copyright {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.sa-cookies-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 55, 72, 0.95);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 2000;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform var(--sa-transition-medium);
}

.sa-cookies-modal.active {
  transform: translateY(0);
}

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

.sa-cookies-text {
  flex: 1;
  min-width: 300px;
}

.sa-cookies-text a {
  color: var(--sa-color-accent-sunshine);
  text-decoration: none;
}

.sa-cookies-text a:hover {
  text-decoration: underline;
}

.sa-cookies-accept {
  background: var(--sa-color-accent-sunshine);
  color: var(--sa-color-text-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--sa-border-radius-medium);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--sa-transition-fast);
  white-space: nowrap;
}

.sa-cookies-accept:hover {
  transform: scale(1.05);
  box-shadow: var(--sa-shadow-soft);
}

.sa-age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 1rem;
  overflow-y: auto;
}

.sa-age-content {
  background: white;
  padding: 3rem;
  border-radius: var(--sa-border-radius-large);
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--sa-shadow-large);
  animation: sa-age-modal-appear 0.5s ease-out;
}

@keyframes sa-age-modal-appear {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.sa-age-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--sa-color-gradient-start), var(--sa-color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sa-age-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: var(--sa-color-text-primary);
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.sa-age-description {
  color: var(--sa-color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  min-height: 3rem;
}

.sa-age-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sa-age-confirm, .sa-age-decline {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--sa-border-radius-medium);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--sa-transition-fast);
  min-width: 150px;
}

.sa-age-confirm {
  background: linear-gradient(135deg, var(--sa-color-gradient-start), var(--sa-color-gradient-middle));
  color: white;
}

.sa-age-decline {
  background: transparent;
  color: var(--sa-color-text-secondary);
  border: 2px solid var(--sa-color-border-light);
}

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

.sa-age-decline:hover {
  background: var(--sa-color-border-light);
}

@media (max-width: 1024px) {
  .sa-hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .sa-navigation-wrapper {
    padding: 0 1rem;
  }
  
  .sa-navigation-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--sa-color-gradient-start), var(--sa-color-gradient-middle));
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 6rem;
    transform: translateX(-100%);
    transition: transform var(--sa-transition-medium);
  }
  
  .sa-navigation-menu.active {
    transform: translateX(0);
  }
  
  .sa-navigation-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .sa-navigation-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .sa-navigation-toggle.active .sa-navigation-toggle-line-1 {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .sa-navigation-toggle.active .sa-navigation-toggle-line-2 {
    opacity: 0;
  }
  
  .sa-navigation-toggle.active .sa-navigation-toggle-line-3 {
    transform: rotate(-45deg) translate(2px, -2px);
  }

  .sa-hero-section {
    min-height: 80vh;
  }
  
  .sa-hero-content {
    padding: 1.5rem 0.5rem;
  }
  
  .sa-hero-title {
    font-size: 2.5rem;
  }
  
  .sa-hero-timer {
    gap: 1rem;
  }
  
  .sa-hero-timer-item {
    min-width: 80px;
    padding: 1rem;
  }
  
  .sa-hero-timer-value {
    font-size: 1.5rem;
  }
  
  .sa-hero-background svg {
    animation: sa-hero-float-mobile 20s ease-in-out infinite;
  }

  @keyframes sa-hero-float-mobile {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
  }

  .sa-packages-section {
    padding: 4rem 1rem;
  }
  
  .sa-packages-title {
    font-size: 2rem;
  }
  
  .sa-package-card {
    padding: 2rem;
  }
  
  .sa-responsibility-section {
    padding: 3rem 1rem;
  }
  
  .sa-responsibility-title {
    font-size: 1.75rem;
  }
  
  .sa-responsibility-partners {
    gap: 2rem;
  }
  
  .sa-footer-container {
    padding: 2rem 1rem 1rem;
  }
  
  .sa-cookies-content {
    flex-direction: column;
    text-align: center;
  }
  
  .sa-age-content {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .sa-hero-section {
    min-height: 70vh;
  }
  
  .sa-hero-content {
    padding: 1rem 0.2rem;
  }

  .sa-hero-title {
    font-size: 2rem;
  }
  
  .sa-hero-subtitle {
    font-size: 1rem;
  }
  
  .sa-hero-highlight {
    padding: 0.75rem 1.5rem;
  }
  
  .sa-hero-prize {
    font-size: 1.25rem;
  }
  
  .sa-hero-timer {
    gap: 0.5rem;
  }
  
  .sa-hero-timer-item {
    min-width: 70px;
    padding: 0.75rem;
  }
  
  .sa-hero-timer-value {
    font-size: 1.25rem;
  }
  
  .sa-hero-button {
    padding: 0.75rem 1.5rem;
  }
  
  .sa-packages-title {
    font-size: 1.75rem;
  }
  
  .sa-package-card {
    padding: 1.5rem;
  }
  
  .sa-package-amount {
    font-size: 2rem;
  }
  
  .sa-responsibility-title {
    font-size: 1.5rem;
  }
  
  .sa-responsibility-partners {
    flex-direction: column;
  }
  
  .sa-footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .sa-age-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .sa-age-confirm, .sa-age-decline {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 320px) {
  .sa-navigation-wrapper {
    padding: 0 0.5rem;
  }
  
  .sa-hero-content {
    padding: 2rem 0.5rem;
  }
  
  .sa-packages-section {
    padding: 3rem 0.5rem;
  }
  
  .sa-package-card {
    padding: 1rem;
  }
  
  .sa-responsibility-section {
    padding: 2rem 0.5rem;
  }
  
  .sa-footer-container {
    padding: 1.5rem 0.5rem 0.5rem;
  }
  
  .sa-cookies-modal {
    padding: 1rem 0.5rem;
  }
  
  .sa-age-content {
    padding: 1.5rem;
  }
}

.sapg-registration-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sapg-registration-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sapg-registration-background svg {
  width: 100%;
  height: 100%;
  animation: sapg-registration-float 15s ease-in-out infinite;
}

@keyframes sapg-registration-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
}

.sapg-registration-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  padding: 2rem;
  max-width: 800px;
}

.sapg-registration-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-registration-title-appear 1s ease-out;
}

@keyframes sapg-registration-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-registration-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: sapg-registration-description-appear 1s ease-out 0.3s both;
}

@keyframes sapg-registration-description-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

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

.sapg-registration-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: sapg-registration-feature-appear 1s ease-out 0.6s both;
}

@keyframes sapg-registration-feature-appear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sapg-registration-form-section {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.sapg-registration-container {
  max-width: 500px;
  margin: 0 auto;
}

.sapg-registration-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.sapg-registration-form-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.sapg-registration-form-description {
  text-align: center;
  color: #718096;
  margin-bottom: 2rem;
}

.sapg-registration-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sapg-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sapg-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.sapg-input-wrapper i {
  position: absolute;
  left: 1rem;
  color: #a0aec0;
  font-size: 1.25rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.sapg-form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.sapg-form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.sapg-form-input:focus + .sapg-input-wrapper i {
  color: #667eea;
}

.sapg-password-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.sapg-password-toggle:hover {
  color: #667eea;
}

.sapg-validation-message {
  min-height: 1.25rem;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.sapg-validation-message.show {
  opacity: 1;
  transform: translateY(0);
}

.sapg-validation-message.error {
  color: #e53e3e;
}

.sapg-validation-message.success {
  color: #38a169;
}

.sapg-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sapg-form-checkbox {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sapg-form-checkbox:checked {
  background-color: #667eea;
  border-color: #667eea;
}

.sapg-checkbox-label {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.4;
}

.sapg-terms-link {
  color: #667eea;
  text-decoration: none;
}

.sapg-terms-link:hover {
  text-decoration: underline;
}

.sapg-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.sapg-submit-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.sapg-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.sapg-form-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.sapg-form-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #667eea;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.sapg-form-link:hover {
  color: #764ba2;
}

@media (max-width: 768px) {
  .sapg-registration-title {
    font-size: 2.5rem;
  }
  
  .sapg-registration-form-wrapper {
    padding: 2rem;
  }
  
  .sapg-registration-features {
    gap: 1rem;
  }
  
  .sapg-registration-feature {
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .sapg-registration-title {
    font-size: 2rem;
  }
  
  .sapg-registration-form-section {
    padding: 2rem 1rem;
  }
  
  .sapg-registration-form-wrapper {
    padding: 1.5rem;
  }
  
  .sapg-registration-features {
    flex-direction: column;
    align-items: center;
  }
}

.sapg-login-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.sapg-login-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sapg-login-background svg {
  width: 100%;
  height: 100%;
  animation: sapg-login-float 20s ease-in-out infinite;
}

@keyframes sapg-login-float {
  0%, 100% { transform: translateX(0px) rotate(0deg); }
  33% { transform: translateX(-10px) rotate(1deg); }
  66% { transform: translateX(10px) rotate(-1deg); }
}

.sapg-login-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  padding: 2rem;
  max-width: 800px;
}

.sapg-login-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-login-title-appear 1s ease-out;
}

@keyframes sapg-login-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sapg-login-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: sapg-login-description-appear 1s ease-out 0.3s both;
}

@keyframes sapg-login-description-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

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

.sapg-login-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: sapg-login-feature-appear 1s ease-out 0.6s both;
}

@keyframes sapg-login-feature-appear {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sapg-login-form-section {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.sapg-login-container {
  max-width: 500px;
  margin: 0 auto;
}

.sapg-login-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.sapg-login-form-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.sapg-login-form-description {
  text-align: center;
  color: #718096;
  margin-bottom: 2rem;
}

.sapg-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sapg-form-input:focus {
  border-color: #fa709a;
  box-shadow: 0 0 0 3px rgba(250, 112, 154, 0.1);
}

.sapg-form-input:focus + .sapg-input-wrapper i {
  color: #fa709a;
}

.sapg-submit-button {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.sapg-submit-button:not(:disabled):hover {
  box-shadow: 0 5px 15px rgba(250, 112, 154, 0.4);
}

.sapg-form-link:hover {
  color: #fa709a;
}

@media (max-width: 768px) {
  .sapg-login-title {
    font-size: 2.5rem;
  }
  
  .sapg-login-form-wrapper {
    padding: 2rem;
  }
  
  .sapg-login-features {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .sapg-login-title {
    font-size: 2rem;
  }
  
  .sapg-login-form-section {
    padding: 2rem 1rem;
  }
  
  .sapg-login-form-wrapper {
    padding: 1.5rem;
  }
  
  .sapg-login-features {
    flex-direction: column;
    align-items: center;
  }
}

.sapg-recovery-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.sapg-recovery-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sapg-recovery-background svg {
  width: 100%;
  height: 100%;
  animation: sapg-recovery-float 18s ease-in-out infinite;
}

@keyframes sapg-recovery-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(0.5deg); }
  50% { transform: translateY(0px) rotate(0deg); }
  75% { transform: translateY(10px) rotate(-0.5deg); }
}

.sapg-recovery-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  padding: 2rem;
  max-width: 800px;
}

.sapg-recovery-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-recovery-title-appear 1s ease-out;
}

@keyframes sapg-recovery-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sapg-recovery-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: sapg-recovery-description-appear 1s ease-out 0.3s both;
}

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

.sapg-recovery-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: sapg-recovery-feature-appear 1s ease-out 0.6s both;
}

@keyframes sapg-recovery-feature-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-recovery-form-section {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.sapg-recovery-container {
  max-width: 500px;
  margin: 0 auto;
}

.sapg-recovery-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.sapg-recovery-form-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.sapg-recovery-form-description {
  text-align: center;
  color: #718096;
  margin-bottom: 2rem;
}

.sapg-recovery-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sapg-form-input:focus {
  border-color: #4facfe;
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

.sapg-form-input:focus + .sapg-input-wrapper i {
  color: #4facfe;
}

.sapg-submit-button {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.sapg-submit-button:not(:disabled):hover {
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.sapg-form-link:hover {
  color: #4facfe;
}

@media (max-width: 768px) {
  .sapg-recovery-title {
    font-size: 2.5rem;
  }
  
  .sapg-recovery-form-wrapper {
    padding: 2rem;
  }
  
  .sapg-recovery-features {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .sapg-recovery-title {
    font-size: 2rem;
  }
  
  .sapg-recovery-form-section {
    padding: 2rem 1rem;
  }
  
  .sapg-recovery-form-wrapper {
    padding: 1.5rem;
  }
  
  .sapg-recovery-features {
    flex-direction: column;
    align-items: center;
  }
}

.sapg-privacy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

.sapg-privacy-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-privacy-title-appear 1s ease-out;
}

@keyframes sapg-privacy-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-privacy-intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.sapg-privacy-metadata {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sapg-privacy-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.sapg-privacy-content {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.sapg-privacy-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sapg-privacy-section {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sapg-privacy-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sapg-privacy-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.sapg-privacy-section-header i {
  font-size: 2rem;
  color: #667eea;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sapg-privacy-section-header h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.75rem;
  color: #2d3748;
  margin: 0;
}

.sapg-privacy-section-content > p {
  color: #4a5568;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sapg-privacy-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sapg-privacy-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 10px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.sapg-privacy-point:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.sapg-privacy-point i {
  font-size: 1.5rem;
  color: #667eea;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.sapg-privacy-point h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.sapg-privacy-point p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.sapg-privacy-point a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.sapg-privacy-point a:hover {
  text-decoration: underline;
}

.sapg-privacy-contact {
  margin-top: 4rem;
  text-align: center;
}

.sapg-privacy-contact-card {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.sapg-privacy-contact-card i:first-child {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.sapg-privacy-contact-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sapg-privacy-contact-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.sapg-privacy-contact-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sapg-privacy-hero {
    padding: 3rem 1rem;
  }
  
  .sapg-privacy-title {
    font-size: 2.5rem;
  }
  
  .sapg-privacy-content {
    padding: 2rem 1rem;
  }
  
  .sapg-privacy-section {
    padding: 2rem;
  }
  
  .sapg-privacy-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .sapg-privacy-point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .sapg-privacy-contact-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .sapg-privacy-title {
    font-size: 2rem;
  }
  
  .sapg-privacy-section {
    padding: 1.5rem;
  }
  
  .sapg-privacy-section-header h2 {
    font-size: 1.5rem;
  }
  
  .sapg-privacy-metadata {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .sapg-privacy-point a {
    font-size: 10px;
  }

  .sapg-privacy-contact-card {
    padding: 2rem 0.2rem;
  }

  .sapg-privacy-contact-button {
    flex-direction: column;
    gap: 1rem;
    font-size: 0.8rem;
    padding: 1rem 0.6rem;
  }
}

.sapg-terms-hero {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

.sapg-terms-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-terms-title-appear 1s ease-out;
}

@keyframes sapg-terms-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-terms-intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.sapg-terms-metadata {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sapg-terms-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.sapg-terms-content {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.sapg-terms-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sapg-terms-section {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sapg-terms-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sapg-terms-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.sapg-terms-section-header i {
  font-size: 2rem;
  color: #fa709a;
  background: linear-gradient(135deg, #fa709a, #fee140);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sapg-terms-section-header h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.75rem;
  color: #2d3748;
  margin: 0;
}

.sapg-terms-section-content > p {
  color: #4a5568;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sapg-terms-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sapg-terms-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 10px;
  border-left: 4px solid #fa709a;
  transition: all 0.3s ease;
}

.sapg-terms-point:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.sapg-terms-point i {
  font-size: 1.5rem;
  color: #fa709a;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.sapg-terms-point h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.sapg-terms-point p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.sapg-terms-acknowledgment {
  margin-top: 4rem;
  text-align: center;
}

.sapg-terms-acknowledgment-card {
  background: linear-gradient(135deg, #fa709a, #fee140);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(250, 112, 154, 0.3);
}

.sapg-terms-acknowledgment-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.sapg-terms-acknowledgment-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sapg-terms-acknowledgment-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.sapg-terms-contact-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sapg-terms-hero {
    padding: 3rem 1rem;
  }
  
  .sapg-terms-title {
    font-size: 2.5rem;
  }
  
  .sapg-terms-content {
    padding: 2rem 1rem;
  }
  
  .sapg-terms-section {
    padding: 2rem;
  }
  
  .sapg-terms-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .sapg-terms-point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .sapg-terms-acknowledgment-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .sapg-terms-title {
    font-size: 2rem;
  }
  
  .sapg-terms-section {
    padding: 1.5rem;
  }
  
  .sapg-terms-section-header h2 {
    font-size: 1.5rem;
  }
  
  .sapg-terms-metadata {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.sapg-cookies-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

.sapg-cookies-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-cookies-title-appear 1s ease-out;
}

@keyframes sapg-cookies-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-cookies-intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.sapg-cookies-metadata {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sapg-cookies-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.sapg-cookies-content {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.sapg-cookies-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sapg-cookies-section {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sapg-cookies-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sapg-cookies-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.sapg-cookies-section-header i {
  font-size: 2rem;
  color: #4facfe;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sapg-cookies-section-header h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.75rem;
  color: #2d3748;
  margin: 0;
}

.sapg-cookies-section-content > p {
  color: #4a5568;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sapg-cookies-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sapg-cookies-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 10px;
  border-left: 4px solid #4facfe;
  transition: all 0.3s ease;
}

.sapg-cookies-point:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.sapg-cookies-point i {
  font-size: 1.5rem;
  color: #4facfe;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.sapg-cookies-point h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.sapg-cookies-point p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.sapg-cookies-controls {
  margin-top: 4rem;
  text-align: center;
}

.sapg-cookies-controls-card {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.sapg-cookies-controls-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.sapg-cookies-controls-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sapg-cookies-controls-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sapg-cookies-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.sapg-cookies-accept-all,
.sapg-cookies-customize {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.sapg-cookies-accept-all {
  background: white;
  color: #4facfe;
}

.sapg-cookies-customize {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.sapg-cookies-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

.sapg-cookies-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.sapg-cookies-contact-link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .sapg-cookies-hero {
    padding: 3rem 1rem;
  }
  
  .sapg-cookies-title {
    font-size: 2.5rem;
  }
  
  .sapg-cookies-content {
    padding: 2rem 1rem;
  }
  
  .sapg-cookies-section {
    padding: 2rem;
  }
  
  .sapg-cookies-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .sapg-cookies-point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .sapg-cookies-controls-card {
    padding: 2rem;
  }
  
  .sapg-cookies-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .sapg-cookies-title {
    font-size: 2rem;
  }
  
  .sapg-cookies-section {
    padding: 1.5rem;
  }
  
  .sapg-cookies-section-header h2 {
    font-size: 1.5rem;
  }
  
  .sapg-cookies-metadata {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.sapg-responsible-hero {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

.sapg-responsible-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-responsible-title-appear 1s ease-out;
}

@keyframes sapg-responsible-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-responsible-intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.sapg-responsible-metadata {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sapg-responsible-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.sapg-responsible-content {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.sapg-responsible-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sapg-responsible-section {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sapg-responsible-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sapg-responsible-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.sapg-responsible-section-header i {
  font-size: 2rem;
  color: #43e97b;
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sapg-responsible-section-header h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.75rem;
  color: #2d3748;
  margin: 0;
}

.sapg-responsible-section-content > p {
  color: #4a5568;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sapg-responsible-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sapg-responsible-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 10px;
  border-left: 4px solid #43e97b;
  transition: all 0.3s ease;
}

.sapg-responsible-point:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.sapg-responsible-point i {
  font-size: 1.5rem;
  color: #43e97b;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.sapg-responsible-point h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.sapg-responsible-point p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.sapg-responsible-resources {
  margin-top: 4rem;
}

.sapg-responsible-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sapg-resource-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sapg-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sapg-resource-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sapg-resource-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
}

.sapg-resource-card p {
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sapg-resource-link {
  display: inline-block;
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sapg-resource-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(67, 233, 123, 0.4);
}

.sapg-responsible-contact {
  margin-top: 4rem;
  text-align: center;
}

.sapg-responsible-contact-card {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(67, 233, 123, 0.3);
}

.sapg-responsible-contact-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.sapg-responsible-contact-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sapg-responsible-contact-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.sapg-responsible-contact-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sapg-responsible-hero {
    padding: 3rem 1rem;
  }
  
  .sapg-responsible-title {
    font-size: 2.5rem;
  }
  
  .sapg-responsible-content {
    padding: 2rem 1rem;
  }
  
  .sapg-responsible-section {
    padding: 2rem;
  }
  
  .sapg-responsible-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .sapg-responsible-point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .sapg-responsible-resources-grid {
    grid-template-columns: 1fr;
  }
  
  .sapg-responsible-contact-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .sapg-responsible-title {
    font-size: 2rem;
  }
  
  .sapg-responsible-section {
    padding: 1.5rem;
  }
  
  .sapg-responsible-section-header h2 {
    font-size: 1.5rem;
  }
  
  .sapg-responsible-metadata {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .sapg-resource-card {
    padding: 2rem;
  }
}

.sapg-error-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa8a8 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.sapg-error-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: sapg-error-grid-move 20s linear infinite;
}

@keyframes sapg-error-grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, 10px); }
}

.sapg-error-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sapg-error-content {
  color: white;
}

.sapg-error-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  perspective: 1000px;
}

.sapg-error-number {
  font-family: 'Merriweather', serif;
  font-size: 8rem;
  font-weight: 900;
  animation: sapg-error-bounce 2s ease-in-out infinite;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.sapg-error-number:nth-child(1) {
  animation-delay: 0s;
}

.sapg-error-number:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes sapg-error-bounce {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.sapg-error-icon {
  font-size: 4rem;
  animation: sapg-error-spin 3s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.2);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes sapg-error-spin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.1); }
  50% { transform: rotate(180deg) scale(1); }
  75% { transform: rotate(270deg) scale(1.1); }
}

.sapg-error-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-error-title-appear 1s ease-out 0.5s both;
}

@keyframes sapg-error-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-error-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: sapg-error-description-appear 1s ease-out 0.7s both;
}

@keyframes sapg-error-description-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.sapg-error-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: sapg-error-features-appear 1s ease-out 0.9s both;
}

@keyframes sapg-error-features-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-error-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.sapg-error-feature:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.sapg-error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: sapg-error-actions-appear 1s ease-out 1.1s both;
}

@keyframes sapg-error-actions-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-error-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sapg-error-primary {
  background: white;
  color: #ff6b6b;
}

.sapg-error-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.sapg-error-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sapg-error-search {
  margin-bottom: 3rem;
  animation: sapg-error-search-appear 1s ease-out 1.3s both;
}

@keyframes sapg-error-search-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-error-search-box {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 500px;
  margin: 0 auto;
}

.sapg-error-search-box i {
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
}

.sapg-error-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  padding: 0.75rem 0;
}

.sapg-error-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.sapg-error-search-input:focus {
  outline: none;
}

.sapg-error-search-button {
  background: white;
  color: #ff6b6b;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sapg-error-search-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.sapg-error-links {
  animation: sapg-error-links-appear 1s ease-out 1.5s both;
}

@keyframes sapg-error-links-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-error-links h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.sapg-error-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.sapg-error-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .sapg-error-number {
    font-size: 6rem;
  }
  
  .sapg-error-icon {
    font-size: 3rem;
    width: 100px;
    height: 100px;
  }
  
  .sapg-error-title {
    font-size: 2.5rem;
  }
  
  .sapg-error-features {
    gap: 1rem;
  }
  
  .sapg-error-feature {
    padding: 0.75rem 1.25rem;
  }
  
  .sapg-error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .sapg-error-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .sapg-error-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .sapg-error-hero {
    padding: 1rem;
  }
  
  .sapg-error-number {
    font-size: 4rem;
  }
  
  .sapg-error-icon {
    font-size: 2rem;
    width: 80px;
    height: 80px;
  }
  
  .sapg-error-title {
    font-size: 2rem;
  }
  
  .sapg-error-description {
    font-size: 1.125rem;
  }
  
  .sapg-error-features {
    flex-direction: column;
    align-items: center;
  }
  
  .sapg-error-search-box {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .sapg-error-search-button {
    width: 100%;
  }
}

.sapg-contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.sapg-contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sapg-contact-background svg {
  width: 100%;
  height: 100%;
  animation: sapg-contact-wave 20s ease-in-out infinite;
}

@keyframes sapg-contact-wave {
  0%, 100% { transform: translateY(0px) scale(1); }
  33% { transform: translateY(-10px) scale(1.02); }
  66% { transform: translateY(5px) scale(0.98); }
}

.sapg-contact-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
  padding: 2rem;
  max-width: 800px;
}

.sapg-contact-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: sapg-contact-title-appear 1s ease-out;
}

@keyframes sapg-contact-title-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sapg-contact-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: sapg-contact-description-appear 1s ease-out 0.3s both;
}

@keyframes sapg-contact-description-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

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

.sapg-contact-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: sapg-contact-feature-appear 1s ease-out 0.6s both;
}

@keyframes sapg-contact-feature-appear {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sapg-contact-form-section {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.sapg-contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.sapg-contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.sapg-contact-form-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.sapg-contact-form-description {
  text-align: center;
  color: #718096;
  margin-bottom: 2rem;
}

.sapg-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sapg-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sapg-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.sapg-textarea-wrapper {
  position: relative;
  display: flex;
}

.sapg-textarea-wrapper i {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #a0aec0;
  font-size: 1.25rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.sapg-input-wrapper i {
  position: absolute;
  left: 1rem;
  color: #a0aec0;
  font-size: 1.25rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.sapg-form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: 'Rubik', sans-serif;
}

.sapg-form-textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  resize: vertical;
  min-height: 120px;
  font-family: 'Rubik', sans-serif;
  line-height: 1.5;
}

.sapg-form-input:focus,
.sapg-form-textarea:focus {
  outline: none;
  border-color: #ff9a9e;
  box-shadow: 0 0 0 3px rgba(255, 154, 158, 0.1);
}

.sapg-form-input:focus + .sapg-input-wrapper i,
.sapg-form-textarea:focus + .sapg-textarea-wrapper i {
  color: #ff9a9e;
}

.sapg-validation-message {
  min-height: 1.25rem;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.sapg-validation-message.show {
  opacity: 1;
  transform: translateY(0);
}

.sapg-validation-message.error {
  color: #e53e3e;
}

.sapg-validation-message.success {
  color: #38a169;
}

.sapg-character-count {
  text-align: right;
  font-size: 0.875rem;
  color: #a0aec0;
  margin-top: 0.5rem;
}

.sapg-character-count.warning {
  color: #ed8936;
}

.sapg-character-count.success {
  color: #38a169;
}

.sapg-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sapg-form-checkbox {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sapg-form-checkbox:checked {
  background-color: #ff9a9e;
  border-color: #ff9a9e;
}

.sapg-checkbox-label {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.4;
}

.sapg-terms-link {
  color: #ff9a9e;
  text-decoration: none;
  font-weight: 500;
}

.sapg-terms-link:hover {
  text-decoration: underline;
}

.sapg-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.sapg-submit-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 154, 158, 0.4);
}

.sapg-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.sapg-contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.sapg-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sapg-contact-info-item:last-child {
  margin-bottom: 0;
}

.sapg-contact-info-item i {
  font-size: 1.5rem;
  color: #ff9a9e;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.sapg-contact-info-item h4 {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.sapg-contact-info-item p {
  color: #718096;
  margin: 0;
  line-height: 1.5;
}

.sapg-contact-info-item a {
  color: #ff9a9e;
  text-decoration: none;
  font-weight: 500;
}

.sapg-contact-info-item a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sapg-contact-title {
    font-size: 2.5rem;
  }
  
  .sapg-contact-form-wrapper {
    padding: 2rem;
  }
  
  .sapg-contact-features {
    gap: 1rem;
  }
  
  .sapg-contact-feature {
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .sapg-contact-title {
    font-size: 2rem;
  }
  
  .sapg-contact-form-section {
    padding: 2rem 1rem;
  }
  
  .sapg-contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .sapg-contact-features {
    flex-direction: column;
    align-items: center;
  }
  
  .sapg-contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .sapg-contact-info-item a {
    font-size: 0.8rem;
  }
}