:root {
  --primary: #2C7A7B;
  --primary-dark: #234E52;
  --primary-light: #4FD1C5;
  --secondary: #1A365D;
  --secondary-dark: #0F1F3D;
  --accent: #F6AD55;
  --accent-dark: #DD6B20;
  --bg: #F7FAFC;
  --surface: #FFFFFF;
  --text: #2D3748;
  --text-light: #718096;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin-bottom: 1.25rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(44, 122, 123, 0.1);
  border-radius: 50px;
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  color: var(--surface);
  background: var(--primary);
}

.lang-divider {
  color: var(--text-light);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 209, 197, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
  box-shadow: 0 4px 16px rgba(44, 122, 123, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 122, 123, 0.4);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--surface);
  transform: translateY(-3px);
}

.hero-cards {
  position: relative;
  height: 500px;
  z-index: 2;
}

.hero-card {
  position: absolute;
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.hero-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

.hero-card:nth-child(1) {
  top: 0;
  right: 0;
  z-index: 3;
}

.hero-card:nth-child(2) {
  top: 100px;
  right: 60px;
  z-index: 2;
}

.hero-card:nth-child(3) {
  top: 200px;
  right: 120px;
  z-index: 1;
}

.hero-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hero-card-content {
  padding: 1.75rem;
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 16px;
  color: var(--surface);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(44, 122, 123, 0.2);
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.6;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
}

.why-choose {
  background: linear-gradient(135deg, rgba(79, 209, 197, 0.05) 0%, rgba(26, 54, 93, 0.05) 100%);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.reason-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.reason-card:hover::before {
  transform: scaleX(1);
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.reason-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 20px;
  color: var(--surface);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 16px rgba(44, 122, 123, 0.2);
  transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
  transform: scale(1.1) rotate(5deg);
}

.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.reason-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.expandable-card {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  cursor: pointer;
}

.expandable-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.expandable-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.expandable-card:hover .expandable-card-image {
  transform: scale(1.05);
}

.expandable-card-content {
  padding: 2rem;
}

.expandable-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.expandable-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 14px;
  color: var(--surface);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.expandable-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0;
}

.expandable-card-excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.expandable-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.expandable-card.expanded .expandable-card-details {
  max-height: 500px;
}

.expandable-card-details ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.expandable-card-details li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-light);
}

.expandable-card-details li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

.expand-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.expandable-card:hover .expand-toggle {
  gap: 0.75rem;
}

.expand-toggle i {
  transition: transform 0.3s ease;
}

.expandable-card.expanded .expand-toggle i {
  transform: rotate(180deg);
}

.faq-section {
  background: var(--surface);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--surface);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 2rem 1.75rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

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

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--surface);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: var(--surface);
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background: var(--accent);
  color: var(--surface);
}

.footer {
  background: var(--secondary);
  color: var(--surface);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 1.25rem;
}

.footer-description {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  opacity: 1;
  transform: translateX(5px);
  color: var(--primary-light);
}

.footer-contact-item i {
  color: var(--primary-light);
  width: 20px;
}

.footer-section h4 {
  color: var(--surface);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  opacity: 0.85;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.75;
  font-size: 0.9375rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-legal a {
  opacity: 0.85;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.page-header {
  padding: 180px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, rgba(79, 209, 197, 0.08) 0%, rgba(26, 54, 93, 0.08) 100%);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(44,122,123,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.content-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.content-card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-card:hover .content-card-image {
  transform: scale(1.08);
}

.content-card-body {
  padding: 2rem;
}

.content-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.content-card li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-light);
}

.content-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-box {
  padding: 2.5rem;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent);
}

.info-box h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.375rem;
}

.info-box i {
  color: var(--primary);
  font-size: 1.75rem;
}

.info-box p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 120px;
}

.contact-info h3 {
  color: var(--surface);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  opacity: 0.95;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.contact-detail {
  display: flex;
  align-items: start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-detail:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--primary);
  border-radius: 14px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  color: var(--surface);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.contact-detail-content p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-form {
  background: var(--surface);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(44, 122, 123, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.iti {
  width: 100%;
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.form-checkbox a:hover {
  color: var(--primary-dark);
}

.btn-submit {
  width: 100%;
}

.thanks-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 50%;
  color: var(--surface);
  font-size: 3rem;
  box-shadow: 0 8px 24px rgba(44, 122, 123, 0.3);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-content strong {
  color: var(--text);
}

.last-updated {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-text p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--primary);
  color: var(--surface);
}

.cookie-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.cookie-decline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.cookie-decline:hover {
  border-color: var(--text);
}

@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border);
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-cards {
    height: 600px;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-card:nth-child(1) {
    top: 0;
    right: 0;
    left: 0;
  }

  .hero-card:nth-child(2) {
    top: 120px;
    right: 20px;
    left: 20px;
  }

  .hero-card:nth-child(3) {
    top: 240px;
    right: 40px;
    left: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info {
    position: static;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-cards {
    height: 500px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .expandable-cards {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .info-boxes {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-card:nth-child(2),
  .hero-card:nth-child(3) {
    display: none;
  }

  .hero-cards {
    height: auto;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}