:root {
  --color-green: #00A86B;
  --color-orange: #FF6B35;
  --color-blue: #0077BE;
  --color-purple: #8B5CF6;
  --color-yellow: #FFB800;
  --color-dark: #1A1A2E;
  --color-light: #F8F9FA;
  --color-text: #2D3748;
  --color-text-light: #4A5568;
  
  --spacing-xs: clamp(0.5rem, 2vw, 0.75rem);
  --spacing-sm: clamp(1rem, 3vw, 1.5rem);
  --spacing-md: clamp(2rem, 5vw, 3rem);
  --spacing-lg: clamp(3rem, 8vw, 5rem);
  --spacing-xl: clamp(4rem, 10vw, 7rem);
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.08), 0 20px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.1), 0 30px 60px rgba(0,0,0,0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

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

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

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

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

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

p {
  margin-bottom: 1.25rem;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-sm);
}

.container-narrow {
  max-width: 900px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  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(--color-green);
  transition: transform 0.3s ease;
}

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

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

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

.nav-menu a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-green);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--color-green);
}

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

.lang-btn {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: transparent;
}

.lang-btn:hover {
  background: rgba(0, 168, 107, 0.1);
  color: var(--color-green);
}

.lang-btn.active {
  background: var(--color-green);
  color: white;
}

.lang-divider {
  color: rgba(0, 0, 0, 0.2);
}

.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(--color-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.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 {
  margin-top: 80px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green) 50%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../images/sustainable-building-exterior.jpg');
  background-size: cover;
  background-position: center;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  padding: var(--spacing-lg) 0;
}

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

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: var(--spacing-md);
  max-width: 600px;
}

.cta-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background: white;
  color: var(--color-green);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--color-green);
}

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

.section-overlap {
  margin-top: -80px;
  position: relative;
  z-index: 3;
}

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

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

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

.highlight-text {
  display: inline;
  background: linear-gradient(120deg, var(--color-yellow) 0%, var(--color-yellow) 100%);
  background-repeat: no-repeat;
  background-size: 0% 40%;
  background-position: 0 85%;
  transition: background-size 0.6s ease;
  padding: 0 0.25rem;
}

.highlight-text.aos-animate {
  background-size: 100% 40%;
}

.bg-orange {
  background: var(--color-orange);
  color: white;
}

.bg-orange h2,
.bg-orange h3,
.bg-orange h4 {
  color: white;
}

.bg-blue {
  background: var(--color-blue);
  color: white;
}

.bg-blue h2,
.bg-blue h3,
.bg-blue h4 {
  color: white;
}

.bg-purple {
  background: var(--color-purple);
  color: white;
}

.bg-purple h2,
.bg-purple h3,
.bg-purple h4 {
  color: white;
}

.bg-yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
}

.bg-yellow h2,
.bg-yellow h3,
.bg-yellow h4 {
  color: var(--color-dark);
}

.bg-green {
  background: var(--color-green);
  color: white;
}

.bg-green h2,
.bg-green h3,
.bg-green h4 {
  color: white;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.card h3 {
  color: var(--color-text);
}

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

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

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

.card-icon.bg-green {
  background: rgba(0, 168, 107, 0.15);
  color: var(--color-green);
}

.card-icon.bg-orange {
  background: rgba(255, 107, 53, 0.15);
  color: var(--color-orange);
}

.card-icon.bg-blue {
  background: rgba(0, 119, 190, 0.15);
  color: var(--color-blue);
}

.card-icon.bg-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-purple);
}

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

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

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

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: white;
  box-shadow: var(--shadow-md);
}

.feature-content h4 {
  margin-bottom: 0.75rem;
  color: white;
}

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

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

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

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

.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.stat-card {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.floating-cta {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--color-orange);
  color: white;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-cta:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

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

.topic-card:nth-child(2) {
  border-left-color: var(--color-orange);
}

.topic-card:nth-child(3) {
  border-left-color: var(--color-blue);
}

.topic-card:nth-child(4) {
  border-left-color: var(--color-purple);
}

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

.topic-card-image {
  height: 220px;
  overflow: hidden;
}

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

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

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

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

.topic-card p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.topic-card ul {
  margin-bottom: 1.5rem;
}

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

.topic-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.update-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  color: var(--color-text);
  transition: all 0.4s ease;
  border-top: 4px solid var(--color-blue);
}

.update-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.update-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.update-date,
.update-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.update-category {
  background: rgba(0, 168, 107, 0.1);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--color-green);
  font-weight: 600;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.1);
}

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

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.contact-info {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(0, 168, 107, 0.1);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--color-text);
}

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

.contact-details a {
  color: var(--color-green);
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

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

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

footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
}

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

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-bottom {
  padding-top: var(--spacing-md);
  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-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-green);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: var(--spacing-md);
  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;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: var(--color-green);
  color: white;
}

.cookie-btn-accept:hover {
  background: #008f5c;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.2);
}

.cookie-btn-reject:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

.cookie-btn-customize:hover {
  background: rgba(0, 168, 107, 0.1);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.cookie-modal-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

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

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

.cookie-category {
  padding: 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

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

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

.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-color: #ccc;
  transition: 0.3s;
  border-radius: 34px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

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

.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(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-modal-footer {
  display: flex;
  gap: 1rem;
  margin-top: var(--spacing-md);
  justify-content: flex-end;
}

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

.legal-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.legal-content h3 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
}

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

.legal-content li {
  margin-bottom: 0.75rem;
  list-style: disc;
}

.last-updated {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-md);
    gap: 0;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu a {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .lang-switcher {
    border-left: none;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin: 0;
    width: 100%;
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    background: var(--color-green);
    min-height: auto;
  }
  
  .hero::after {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    padding: var(--spacing-md) 0;
  }
  
  .content-split {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .content-split.reverse {
    direction: ltr;
  }
  
  .floating-cta {
    writing-mode: horizontal-tb;
    right: 20px;
    bottom: 20px;
    top: auto;
    transform: none;
    padding: 1rem 1.5rem;
  }
  
  .floating-cta:hover {
    transform: scale(1.05);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}