:root {
  --gradient-1: #667eea;
  --gradient-2: #764ba2;
  --gradient-3: #f093fb;
  --gradient-4: #4facfe;
  --gradient-5: #00f2fe;
  --gradient-6: #43e97b;
  
  --primary: #5e72e4;
  --secondary: #825ee4;
  --accent: #11cdef;
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --text-light: #718096;
  --bg-white: #fefefe;
  --bg-light: #f7fafc;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04), 0 4px 4px rgba(0,0,0,0.02);
  
  --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
  --spacing-sm: clamp(1rem, 2vw, 1.5rem);
  --spacing-md: clamp(2rem, 4vw, 3rem);
  --spacing-lg: clamp(3rem, 6vw, 5rem);
  --spacing-xl: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
}

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

.mesh-gradient-bg {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  overflow: hidden;
}

.mesh-gradient-bg::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, var(--gradient-1) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(60px);
  z-index: 0;
}

.mesh-gradient-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, var(--gradient-4) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(60px);
  z-index: 0;
}

.mesh-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gradient-3) 0%, transparent 65%);
  opacity: 0.2;
  filter: blur(50px);
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-medium);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

header {
  position: sticky;
  top: 0;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

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

.logo img {
  height: 42px;
  width: auto;
}

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

.nav-links a {
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  color: var(--text-medium);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(0,0,0,0.1);
}

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

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

.lang-btn.active {
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  color: white;
  box-shadow: var(--shadow-sm);
}

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

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

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

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 50%, var(--gradient-3) 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--spacing-lg) 0;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-text .typed-text {
  background: linear-gradient(135deg, var(--gradient-5), var(--gradient-6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

.hero-image {
  position: relative;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-4), var(--gradient-5));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--text-medium);
}

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

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

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

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

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

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: white;
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.content-split.reverse {
  direction: rtl;
}

.content-split.reverse > * {
  direction: ltr;
}

.content-split-text {
  max-width: 600px;
}

.content-split-text h2 {
  margin-bottom: 1.5rem;
}

.content-split-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.content-split-text li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--text-medium);
}

.content-split-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.content-split-image {
  position: relative;
}

.content-split-image img {
  width: 100%;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.cta-banner {
  background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 50%, var(--gradient-3) 100%);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin: var(--spacing-xl) 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  filter: blur(40px);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-md);
}

.topic-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

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

.topic-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

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

.topic-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.topic-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

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

.contact-info {
  background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 100%);
  padding: 3rem;
  border-radius: var(--border-radius-xl);
  color: white;
  box-shadow: var(--shadow-lg);
}

.contact-info h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--gradient-5);
  margin-top: 0.25rem;
}

.contact-item-content h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.contact-item-content p,
.contact-item-content a {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}

.contact-item-content a:hover {
  color: white;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.1);
}

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

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

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text-medium);
  cursor: pointer;
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.map-container {
  margin-top: var(--spacing-md);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thanks-content {
  text-align: center;
  max-width: 600px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-lg);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gradient-4), var(--gradient-5));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-lg) 0;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

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

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  padding: var(--spacing-lg) 0 2rem;
  margin-top: var(--spacing-xl);
}

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

.footer-about h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
}

.footer-legal a:hover {
  color: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px 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: 1400px;
  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-bottom: 0;
  color: var(--text-medium);
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-btn-reject {
  background: var(--bg-light);
  color: var(--text-dark);
}

.cookie-btn-reject:hover {
  background: #e2e8f0;
}

.cookie-btn-customize {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-btn-customize:hover {
  background: var(--primary);
  color: white;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10001;
  padding: 2rem;
  overflow-y: auto;
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-medium);
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--text-dark);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category h4 {
  margin-bottom: 0;
  font-size: 1.0625rem;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cbd5e0;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: var(--text-medium);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-modal-actions button {
  flex: 1;
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
    align-items: stretch;
    gap: 0;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    padding: 1rem;
    border-radius: var(--border-radius-sm);
  }
  
  .lang-switcher {
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-left: 0;
    padding-top: 1rem;
    margin-left: 0;
    margin-top: 1rem;
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-diagonal {
    clip-path: none;
    width: 100%;
  }
  
  .content-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-split.reverse {
    direction: ltr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .topic-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cookie-modal {
    padding: 1rem;
  }
  
  .cookie-modal-content {
    padding: 2rem;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }
  
  .contact-form-wrapper,
  .contact-info {
    padding: 2rem;
  }
}