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

:root {
  --csca-color-gradient-start: #0f172a;
  --csca-color-gradient-middle: #155e75;
  --csca-color-gradient-end: #22d3ee;
  --csca-color-accent-coral: #f97316;
  --csca-color-accent-mint: #14b8a6;
  --csca-color-accent-sunshine: #facc15;
  --csca-color-accent-blush: #f472b6;
  --csca-color-accent-sky: #1d4ed8;
  --csca-color-text-primary: #0f172a;
  --csca-color-text-secondary: #1e293b;
  --csca-color-background-light: #f1f5f9;
  --csca-color-background-white: #ffffff;
  --csca-color-border-light: #cbd5e1;
  --csca-shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --csca-shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --csca-shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --csca-border-radius-small: 8px;
  --csca-border-radius-medium: 12px;
  --csca-border-radius-large: 16px;
  --csca-transition-fast: 0.2s ease;
  --csca-transition-medium: 0.3s ease;
  --csca-transition-slow: 0.5s ease;
}

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

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

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

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

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

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

.csca-navigation-title {
  font-family: 'Domine', serif;
  font-weight: 700;
  color: white;
  font-size: 1rem;
}

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

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

.csca-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(--csca-border-radius-small);
  transition: all var(--csca-transition-fast);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.csca-footer-container {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 3rem 2rem 1rem;
}

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

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

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

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

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

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

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

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

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

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

.csca-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(--csca-transition-medium);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cscapg-registration-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8 0%, #6366f1 100%);
}

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

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

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

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

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

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

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

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

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

.cscapg-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: cscapg-registration-feature-appear 1s ease-out 0.6s both;
}

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

.cscapg-registration-form-section {
  padding: 4rem 2rem;
  background: #f0f9ff;
}

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

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

.cscapg-registration-form-title {
  font-family: 'Domine', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #0f172a;
}

.cscapg-registration-form-description {
  text-align: center;
  color: #64748b;
  margin-bottom: 2rem;
}

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

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

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

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

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

.cscapg-form-input:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.cscapg-form-input:focus + .cscapg-input-wrapper i {
  color: #1d4ed8;
}

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

.cscapg-password-toggle:hover {
  color: #1d4ed8;
}

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

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

.cscapg-validation-message.error {
  color: #dc2626;
}

.cscapg-validation-message.success {
  color: #16a34a;
}

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

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

.cscapg-form-checkbox:checked {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.cscapg-checkbox-label {
  font-size: 0.875rem;
  color: #1e293b;
  line-height: 1.4;
}

.cscapg-terms-link {
  color: #1d4ed8;
  text-decoration: none;
}

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

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

.cscapg-submit-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 78, 216, 0.4);
}

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

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

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

.cscapg-form-link:hover {
  color: #6366f1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cscapg-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: cscapg-login-feature-appear 1s ease-out 0.6s both;
}

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

.cscapg-login-form-section {
  padding: 4rem 2rem;
  background: #f0f9ff;
}

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

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

.cscapg-login-form-title {
  font-family: 'Domine', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #0f172a;
}

.cscapg-login-form-description {
  text-align: center;
  color: #64748b;
  margin-bottom: 2rem;
}

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

.cscapg-form-input:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.cscapg-form-input:focus + .cscapg-input-wrapper i {
  color: #f97316;
}

.cscapg-submit-button {
  background: linear-gradient(135deg, #f97316, #facc15);
}

.cscapg-submit-button:not(:disabled):hover {
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.cscapg-form-link:hover {
  color: #f97316;
}

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

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

.cscapg-recovery-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 100%);
}

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

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

@keyframes cscapg-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); }
}

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

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

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

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

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

.cscapg-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: cscapg-recovery-feature-appear 1s ease-out 0.6s both;
}

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

.cscapg-recovery-form-section {
  padding: 4rem 2rem;
  background: #f0f9ff;
}

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

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

.cscapg-recovery-form-title {
  font-family: 'Domine', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #0f172a;
}

.cscapg-recovery-form-description {
  text-align: center;
  color: #64748b;
  margin-bottom: 2rem;
}

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

.cscapg-form-input:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.cscapg-form-input:focus + .cscapg-input-wrapper i {
  color: #0ea5e9;
}

.cscapg-submit-button {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

.cscapg-submit-button:not(:disabled):hover {
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.cscapg-form-link:hover {
  color: #0ea5e9;
}

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

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

.cscapg-privacy-hero {
  background: linear-gradient(135deg, #1d4ed8 0%, #6366f1 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

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

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

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

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

.cscapg-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);
}

.cscapg-privacy-content {
  padding: 4rem 2rem;
  background: #f0f9ff;
}

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

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

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

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

.cscapg-privacy-section-header i {
  font-size: 2rem;
  color: #1d4ed8;
  background: linear-gradient(135deg, #1d4ed8, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cscapg-privacy-section-header h2 {
  font-family: 'Domine', serif;
  font-size: 1.75rem;
  color: #0f172a;
  margin: 0;
}

.cscapg-privacy-section-content > p {
  color: #1e293b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.cscapg-privacy-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f1f5f9;
  border-radius: 10px;
  border-left: 4px solid #1d4ed8;
  transition: all 0.3s ease;
}

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

.cscapg-privacy-point i {
  font-size: 1.5rem;
  color: #1d4ed8;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.cscapg-privacy-point h3 {
  font-family: 'Domine', serif;
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cscapg-privacy-point p {
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

.cscapg-privacy-point a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

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

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

.cscapg-privacy-contact-card {
  background: linear-gradient(135deg, #1d4ed8, #6366f1);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.3);
}

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

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

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

.cscapg-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.cscapg-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);
}

.cscapg-terms-content {
  padding: 4rem 2rem;
  background: #f0f9ff;
}

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

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

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

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

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

.cscapg-terms-section-header h2 {
  font-family: 'Domine', serif;
  font-size: 1.75rem;
  color: #0f172a;
  margin: 0;
}

.cscapg-terms-section-content > p {
  color: #1e293b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

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

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

.cscapg-terms-point h3 {
  font-family: 'Domine', serif;
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cscapg-terms-point p {
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

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

.cscapg-terms-acknowledgment-card {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

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

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

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

.cscapg-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);
}

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

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

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

.cscapg-cookies-hero {
  background: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

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

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

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

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

.cscapg-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);
}

.cscapg-cookies-content {
  padding: 4rem 2rem;
  background: #f0f9ff;
}

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

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

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

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

.cscapg-cookies-section-header i {
  font-size: 2rem;
  color: #0ea5e9;
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cscapg-cookies-section-header h2 {
  font-family: 'Domine', serif;
  font-size: 1.75rem;
  color: #0f172a;
  margin: 0;
}

.cscapg-cookies-section-content > p {
  color: #1e293b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

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

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

.cscapg-cookies-point h3 {
  font-family: 'Domine', serif;
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cscapg-cookies-point p {
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

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

.cscapg-cookies-controls-card {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

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

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

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

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

.cscapg-cookies-accept-all,
.cscapg-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;
}

.cscapg-cookies-accept-all {
  background: white;
  color: #0ea5e9;
}

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

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

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

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

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

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

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

.cscapg-responsible-hero {
  background: linear-gradient(135deg, #0e7490 0%, #22d3ee 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

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

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

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

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

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

.cscapg-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);
}

.cscapg-responsible-content {
  padding: 4rem 2rem;
  background: #f0f9ff;
}

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

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

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

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

.cscapg-responsible-section-header i {
  font-size: 2rem;
  color: #0e7490;
  background: linear-gradient(135deg, #0e7490, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cscapg-responsible-section-header h2 {
  font-family: 'Domine', serif;
  font-size: 1.75rem;
  color: #0f172a;
  margin: 0;
}

.cscapg-responsible-section-content > p {
  color: #1e293b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.cscapg-responsible-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f1f5f9;
  border-radius: 10px;
  border-left: 4px solid #0e7490;
  transition: all 0.3s ease;
}

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

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

.cscapg-responsible-point h3 {
  font-family: 'Domine', serif;
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cscapg-responsible-point p {
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

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

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

.cscapg-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 #cbd5e1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cscapg-resource-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0e7490, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cscapg-resource-card h3 {
  font-family: 'Domine', serif;
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.cscapg-resource-card p {
  color: #1e293b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.cscapg-resource-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(14, 116, 144, 0.4);
}

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

.cscapg-responsible-contact-card {
  background: linear-gradient(135deg, #0e7490, #22d3ee);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(14, 116, 144, 0.3);
}

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

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

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

.cscapg-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);
}

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

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

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

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

.cscapg-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: cscapg-error-grid-move 20s linear infinite;
}

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

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

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

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

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

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

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

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

.cscapg-error-icon {
  font-size: 4rem;
  animation: cscapg-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 cscapg-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); }
}

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

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

.cscapg-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: cscapg-error-description-appear 1s ease-out 0.7s both;
}

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

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

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

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

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

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

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

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

.cscapg-error-primary {
  background: white;
  color: #f97316;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cscapg-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);
}

.cscapg-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) {
  .cscapg-error-number {
    font-size: 6rem;
  }
  
  .cscapg-error-icon {
    font-size: 3rem;
    width: 100px;
    height: 100px;
  }
  
  .cscapg-error-title {
    font-size: 2.5rem;
  }
  
  .cscapg-error-features {
    gap: 1rem;
  }
  
  .cscapg-error-feature {
    padding: 0.75rem 1.25rem;
  }
  
  .cscapg-error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cscapg-error-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cscapg-error-links-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.cscapg-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: cscapg-contact-feature-appear 1s ease-out 0.6s both;
}

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

.cscapg-contact-form-section {
  padding: 4rem 2rem;
  background: #f0f9ff;
}

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

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

.cscapg-contact-form-title {
  font-family: 'Domine', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #0f172a;
}

.cscapg-contact-form-description {
  text-align: center;
  color: #64748b;
  margin-bottom: 2rem;
}

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

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

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

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

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

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

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

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

.cscapg-form-input:focus,
.cscapg-form-textarea:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.cscapg-form-input:focus + .cscapg-input-wrapper i,
.cscapg-form-textarea:focus + .cscapg-textarea-wrapper i {
  color: #0f766e;
}

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

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

.cscapg-validation-message.error {
  color: #dc2626;
}

.cscapg-validation-message.success {
  color: #16a34a;
}

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

.cscapg-character-count.warning {
  color: #ea580c;
}

.cscapg-character-count.success {
  color: #16a34a;
}

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

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

.cscapg-form-checkbox:checked {
  background-color: #0f766e;
  border-color: #0f766e;
}

.cscapg-checkbox-label {
  font-size: 0.875rem;
  color: #1e293b;
  line-height: 1.4;
}

.cscapg-terms-link {
  color: #0f766e;
  text-decoration: none;
  font-weight: 500;
}

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

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

.cscapg-submit-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(15, 118, 110, 0.4);
}

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

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

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

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

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

.cscapg-contact-info-item h4 {
  font-family: 'Domine', serif;
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.cscapg-contact-info-item p {
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.cscapg-contact-info-item a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 500;
}

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

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

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

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


