:root {
  --primary: #FFD93D;
  --secondary: #6BCF7F;
  --accent: #FF6B9D;
  --dark: #1A1A2E;
  --text: #2D2D3A;
  --text-light: #5A5A6E;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --border: #1A1A2E;
  
  --shadow-sm: 4px 4px 0 var(--border);
  --shadow-md: 6px 6px 0 var(--border);
  --shadow-lg: 8px 8px 0 var(--border);
  --shadow-xl: 12px 12px 0 var(--border);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

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

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

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

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 4px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

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

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--border);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 80%;
}

.nav-links a:hover {
  color: var(--dark);
  transform: translateY(-2px);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 2px solid var(--border);
}

.lang-btn {
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 var(--border);
}

.lang-btn:hover {
  background: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--border);
}

.lang-btn.active {
  background: var(--dark);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--border);
}

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

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

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

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

.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 Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(26, 26, 46, 0.03) 40px,
      rgba(26, 26, 46, 0.03) 80px
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  margin-bottom: var(--space-md);
  text-shadow: 4px 4px 0 rgba(26, 26, 46, 0.1);
}

.hero-rotating {
  color: var(--dark);
  border-bottom: 6px solid var(--dark);
  display: inline-block;
  padding-bottom: 0.25rem;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: var(--space-lg);
  color: var(--dark);
  max-width: 700px;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  border: 3px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-family: 'Familjen Grotesk', sans-serif;
}

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

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

/* Info Blocks Section */
.info-blocks {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.info-block {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.info-block:nth-child(1) {
  border-color: var(--primary);
}

.info-block:nth-child(2) {
  border-color: var(--secondary);
}

.info-block:nth-child(3) {
  border-color: var(--accent);
}

.info-block:nth-child(4) {
  border-color: var(--dark);
}

.info-block:hover {
  transform: translate(-4px, -4px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.block-icon {
  width: 70px;
  height: 70px;
  border: 3px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.info-block:nth-child(1) .block-icon {
  background: var(--primary);
}

.info-block:nth-child(2) .block-icon {
  background: var(--secondary);
}

.info-block:nth-child(3) .block-icon {
  background: var(--accent);
}

.info-block:nth-child(4) .block-icon {
  background: var(--dark);
  color: var(--white);
}

.info-block:hover .block-icon {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: var(--shadow-md);
}

.info-block h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.info-block p {
  margin: 0;
}

/* Content Grid Section */
.content-grid {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--bg) 0%, #E8F5E9 100%);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-md);
}

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

.grid-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid var(--border);
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: var(--space-md);
}

.card-content h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  box-shadow: 2px 2px 0 var(--border);
}

/* Glassmorphism Section */
.glass-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.glass-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.glass-card h2 {
  color: var(--dark);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.glass-card p {
  color: var(--dark);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.glass-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.glass-feature {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.glass-feature:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(8px);
}

.glass-feature i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: var(--dark);
}

/* Floating Sidebar CTA */
.floating-cta {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-cta.hidden {
  transform: translateX(200px);
  opacity: 0;
}

.floating-btn {
  background: var(--accent);
  color: var(--white);
  border: 3px solid var(--border);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: translate(-4px, -4px) scale(1.1);
  box-shadow: var(--shadow-lg);
  background: var(--dark);
}

.floating-tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 3px solid var(--border);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  font-weight: 600;
}

.floating-cta:hover .floating-tooltip {
  opacity: 1;
  right: 90px;
}

/* About/Team Section */
.team-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.team-intro {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.team-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.team-member {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.team-member:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-xl);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 4px solid var(--border);
}

.team-info {
  padding: var(--space-md);
}

.team-info h3 {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-info p {
  margin: 0;
  font-size: 0.95rem;
}

/* Topics Section */
.topics-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE6F0 100%);
}

.topics-list {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.topic-item {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
}

.topic-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-xl);
}

.topic-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border: 3px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.topic-item:nth-child(2) .topic-number {
  background: var(--secondary);
}

.topic-item:nth-child(3) .topic-number {
  background: var(--accent);
}

.topic-item:nth-child(4) .topic-number {
  background: var(--dark);
  color: var(--white);
}

.topic-content h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.75rem;
}

.topic-content p {
  margin-bottom: var(--space-sm);
}

.topic-list {
  list-style: none;
  margin-top: var(--space-sm);
}

.topic-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.topic-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Contact Section */
.contact-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-info {
  background: var(--primary);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
  margin-bottom: var(--space-md);
  font-size: 2rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--white);
  transform: translateX(8px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: var(--white);
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-details h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-details p {
  margin: 0;
  color: var(--text);
}

.contact-form {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 3px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', 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(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

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

.iti {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--accent);
  text-decoration: underline;
}

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

.form-group button {
  width: 100%;
}

.map-container {
  margin-top: var(--space-lg);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

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

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

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

.thanks-icon {
  width: 120px;
  height: 120px;
  background: var(--white);
  border: 5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-lg);
  color: var(--secondary);
}

.thanks-content h1 {
  margin-bottom: var(--space-sm);
}

.thanks-content p {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

/* Legal Pages */
.legal-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 4px solid var(--primary);
}

.last-updated {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--space-lg);
  display: block;
}

.legal-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.75rem;
  color: var(--dark);
}

.legal-content h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 1.35rem;
}

.legal-content p {
  margin-bottom: var(--space-sm);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

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

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  border-top: 6px solid var(--border);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-size: 1.35rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 1.25rem;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  transition: all 0.3s ease;
}

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

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 4px solid var(--border);
  padding: var(--space-md);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.cookie-text p {
  margin: 0;
  color: var(--text);
}

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

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Familjen Grotesk', sans-serif;
  box-shadow: var(--shadow-sm);
}

.cookie-btn-accept {
  background: var(--secondary);
  color: var(--dark);
}

.cookie-btn-accept:hover {
  background: var(--dark);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.cookie-btn-reject {
  background: var(--white);
  color: var(--dark);
}

.cookie-btn-reject:hover {
  background: var(--accent);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.cookie-btn-customize {
  background: var(--bg);
  color: var(--dark);
}

.cookie-btn-customize:hover {
  background: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: var(--space-md);
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.cookie-settings-content h3 {
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.cookie-category {
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
}

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

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

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--text-light);
  border: 2px solid var(--border);
  border-radius: 26px;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

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

.cookie-category p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-light);
}

.cookie-settings-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.cookie-settings-buttons button {
  flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-md);
    border-bottom: 4px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    gap: 0;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 2px solid var(--bg);
  }
  
  .nav-links a {
    display: block;
    padding: var(--space-sm);
  }
  
  .lang-switcher {
    border-left: none;
    border-top: 2px solid var(--border);
    padding-left: 0;
    padding-top: var(--space-sm);
    margin-left: 0;
    margin-top: var(--space-sm);
    justify-content: center;
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .blocks-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .floating-cta {
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
  
  .floating-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .topic-item {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .info-block,
  .grid-card,
  .contact-form,
  .contact-info {
    border-width: 3px;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.hidden {
  display: none;
}

/* Print Styles */
@media print {
  header,
  footer,
  .floating-cta,
  .cookie-consent {
    display: none;
  }
}