:root {
  --navy: #0A1628;
  --terracotta: #E07856;
  --coral: #FF6B4A;
  --off-white: #FAF8F5;
  --gray: #8B9099;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08), 0 1px 3px rgba(10, 22, 40, 0.12);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.12), 0 2px 6px rgba(10, 22, 40, 0.16);
  --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.16), 0 4px 12px rgba(10, 22, 40, 0.2);
  --shadow-glow: 0 8px 32px rgba(224, 120, 86, 0.2), 0 4px 12px rgba(224, 120, 86, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --spacing-xs: 1rem;
  --spacing-sm: 2rem;
  --spacing-md: 4rem;
  --spacing-lg: 6rem;
  --spacing-xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

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

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

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

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

p {
  margin-bottom: 1.25rem;
  color: var(--navy);
  opacity: 0.85;
}

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 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.3), 0 2px 6px rgba(255, 107, 74, 0.4);
}

.btn-primary:hover {
  background: #ff5436;
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.4), 0 4px 12px rgba(255, 107, 74, 0.5);
  transform: translateY(-2px);
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  transition: all 0.3s ease;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}

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

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

.nav-links a {
  font-weight: 500;
  color: var(--navy);
  position: relative;
}

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

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

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

.lang-btn {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray);
  transition: color 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--coral);
}

.lang-divider {
  color: rgba(10, 22, 40, 0.2);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem;
}

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

.hero-split {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-content {
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(224, 120, 86, 0.1);
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(224, 120, 86, 0.2);
}

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 .typed-text {
  color: var(--coral);
  display: inline-block;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(10, 22, 40, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-image {
  position: relative;
  height: 600px;
}

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

.hero-card {
  position: absolute;
  bottom: -40px;
  left: -60px;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  max-width: 280px;
  border: 2px solid var(--coral);
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--coral), var(--terracotta));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.9rem;
  margin: 0;
}

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

.section-angled {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: calc(var(--spacing-lg) + 3rem) 0;
  margin: 4rem 0;
}

.section-dark {
  background: var(--navy);
  color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: white;
}

.section-light {
  background: white;
}

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

.section-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(224, 120, 86, 0.1);
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(224, 120, 86, 0.2);
}

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

.section-header p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.8;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.card {
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(10, 22, 40, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--coral), var(--terracotta));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.3);
}

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

.card p {
  margin: 0;
  line-height: 1.7;
}

.process-section {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--coral), var(--terracotta));
  z-index: 0;
}

.process-step {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(10, 22, 40, 0.08);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-step:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--coral), var(--terracotta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.3);
}

.process-step h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.process-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.source-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.source-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--coral);
  box-shadow: 0 8px 32px rgba(255, 107, 74, 0.2);
  transform: translateY(-4px);
}

.source-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.source-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.features-list {
  list-style: none;
  margin-top: 2rem;
}

.features-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list i {
  color: var(--coral);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--navy), #152238);
  color: white;
  text-align: center;
  padding: var(--spacing-lg) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 120, 86, 0.15), transparent);
  border-radius: 50%;
}

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

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.directory-intro {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(10, 22, 40, 0.08);
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
}

.directory-intro h3 {
  margin-bottom: 1rem;
  color: var(--coral);
}

.category-section {
  margin-bottom: 4rem;
}

.category-section h3 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--coral);
}

.opportunity-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(10, 22, 40, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.opportunity-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.opportunity-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.opportunity-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.opportunity-source {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.opportunity-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(224, 120, 86, 0.1);
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(224, 120, 86, 0.2);
}

.opportunity-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.detail-value {
  font-weight: 600;
  color: var(--navy);
}

.contact-section {
  padding: var(--spacing-lg) 0;
}

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

.contact-info {
  background: var(--navy);
  color: white;
  padding: 4rem;
  border-radius: var(--radius-lg);
  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: 3rem;
}

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

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 74, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-text p {
  margin: 0;
  font-size: 1.05rem;
}

.contact-text a {
  color: var(--coral);
  font-weight: 500;
}

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

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(10, 22, 40, 0.08);
  box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(10, 22, 40, 0.1);
  border-radius: var(--radius-sm);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

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

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

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

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

.checkbox-group a {
  color: var(--coral);
  font-weight: 500;
}

.map-container {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(10, 22, 40, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

footer {
  background: var(--navy);
  color: white;
  padding: var(--spacing-md) 0 2rem;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
}

.footer-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--coral);
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: var(--coral);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

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

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

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(10, 22, 40, 0.15);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--coral);
}

.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;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--coral);
  font-weight: 500;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn.accept:hover {
  background: #ff5436;
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.3);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(10, 22, 40, 0.2);
}

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

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

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

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

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

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

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

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

.cookie-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cookie-category {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

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

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

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gray);
  transition: 0.3s;
  border-radius: 50px;
}

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

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

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

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

.cookie-category p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

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

.legal-page {
  padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
}

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

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

.legal-date {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

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

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

.legal-content p {
  margin-bottom: 1.5rem;
}

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

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) 0;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  padding: 4rem 2rem;
}

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

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

.thanks-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-image {
    height: 500px;
  }
  
  .hero-card {
    left: 20px;
    bottom: -30px;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid::before {
    display: none;
  }
  
  .sources-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .opportunity-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 4rem;
    --spacing-xl: 5rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  nav {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 20px rgba(10, 22, 40, 0.15);
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 22, 40, 0.2);
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1000;
  }
  
  .hero {
    min-height: auto;
    padding: calc(80px + 2rem) 0 3rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-image {
    height: 400px;
  }
  
  .hero-card {
    position: static;
    margin-top: 2rem;
    max-width: 100%;
  }
  
  .section {
    padding: var(--spacing-md) 0;
  }
  
  .section-angled {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    padding: calc(var(--spacing-md) + 2rem) 0;
    margin: 2rem 0;
  }
  
  .grid-3,
  .grid-4,
  .process-grid,
  .sources-grid {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 2rem;
  }
  
  .contact-info {
    padding: 2.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-description {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .card-icon,
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .cookie-banner {
    padding: 1rem;
  }
  
  .cookie-modal-content {
    padding: 2rem;
  }
}