:root {
  --primary-color: #276EF1;
  --secondary-color: #FFD166;
  --background-color: #F0F4F8;
  --footer-bg-color: #1A202C;
  --button-color: #276EF1;
  --section-bg-1: #FFFFFF;
  --section-bg-2: #F8FAFC;
  --section-bg-3: #E8F0F7;
  --text-color-dark: #1A202C;
  --text-color-light: #4A5568;
  --heading-font: 'Inter', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --border-radius: 8px;
  --spacing-unit: 1.25rem; 
  --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-color-light);
  background-color: var(--background-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--text-color-dark);
  line-height: 1.2;
  margin-top: calc(var(--spacing-unit) * 2);
  margin-bottom: var(--spacing-unit);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem; 
  font-weight: 800;
}

h2 {
  font-size: 2.5rem; 
  font-weight: 700;
}

h3 {
  font-size: 1.875rem; 
  font-weight: 600;
}

h4 {
  font-size: 1.5rem; 
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-unit);
  font-size: 1.125rem; 
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

strong {
  font-weight: 700;
  color: var(--text-color-dark);
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-unit);
  padding-right: var(--spacing-unit);
}

.section {
  padding-top: calc(var(--spacing-unit) * 4);
  padding-bottom: calc(var(--spacing-unit) * 4);
}

.section:nth-of-type(even) {
  background-color: var(--section-bg-2);
}

.section:nth-of-type(odd) {
  background-color: var(--section-bg-1);
}

.section-hero {
  background-color: var(--section-bg-3);
  padding-top: calc(var(--spacing-unit) * 8);
  padding-bottom: calc(var(--spacing-unit) * 8);
  position: relative;
  overflow: hidden;
}

.section-hero::before,
.section-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
  z-index: 0;
}

.section-hero::before {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
  animation: floatGeometric 15s infinite ease-in-out alternate;
}

.section-hero::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -150px;
  background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 70%);
  animation: floatGeometric 12s infinite ease-in-out reverse;
}

@keyframes floatGeometric {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem; 
  border-radius: var(--border-radius);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  box-shadow: var(--shadow-base);
}

.btn-primary {
  background-color: var(--button-color);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card {
  background-color: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: calc(var(--spacing-unit) * 2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); 
  transition: all 0.3s ease;
  transform-style: preserve-3d; 
}

.card:hover {
  box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.45);
  transform: translateY(-5px) scale(1.02) rotateX(1deg);
}

.form-group {
  margin-bottom: var(--spacing-unit);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color-dark);
  font-family: var(--heading-font);
}

.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E0;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-color-dark);
  background-color: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(39, 110, 241, 0.2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background-color: var(--footer-bg-color);
  color: #E2E8F0;
  padding: calc(var(--spacing-unit) * 3) 0;
  font-size: 0.9rem;
  text-align: center;
}

.footer a {
  color: var(--secondary-color);
}

.footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}


[x-cloak] { display: none !important; }

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}

.slide-up-enter-active, .slide-up-leave-active {
  transition: all 0.5s ease-out;
}
.slide-up-enter-from, .slide-up-leave-to {
  opacity: 0;
  transform: translateY(20px);
}


@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }
  .section {
    padding-top: calc(var(--spacing-unit) * 2);
    padding-bottom: calc(var(--spacing-unit) * 2);
  }
  .section-hero {
    padding-top: calc(var(--spacing-unit) * 4);
    padding-bottom: calc(var(--spacing-unit) * 4);
  }
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}


.geometric-accent-box {
  position: relative;
  padding: var(--spacing-unit);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--section-bg-1);
  box-shadow: var(--shadow-lg);
}

.geometric-accent-box::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--secondary-color);
  opacity: 0.2;
  transform: rotate(45deg);
  border-radius: 20%;
  z-index: 0;
}

.geometric-accent-box > * {
  position: relative;
  z-index: 1;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  margin-bottom: var(--spacing-unit);
  font-size: 2rem;
  box-shadow: var(--shadow-base);
}


.glassmorphism-content {
  color: var(--text-color-dark);
  text-shadow: 0 0 5px rgba(255,255,255,0.5); 
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}



.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}
