:root {
  --primary: #2E6B8E;
  --accent-orange: #F7A821;
  --accent-green: #8CC084;
  --accent-red: #D45B3E;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
}

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

html, body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 0.75rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

main {
  margin-top: 80px;
  padding: 0;
}

.hero {
  background: linear-gradient(135deg, rgba(46, 107, 142, 0.05) 0%, rgba(247, 168, 33, 0.05) 100%);
  padding: 5rem 2rem;
  margin-bottom: 4rem;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: block;
}

.content-section {
  max-width: 1300px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-layout-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-layout-two-col.reverse {
  direction: rtl;
}

.section-layout-two-col.reverse > * {
  direction: ltr;
}

.text-content {
  padding: 1rem 0;
}

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

.text-content li {
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
  color: var(--text-light);
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: block;
}

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

.card {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}

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

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

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

table thead {
  background-color: var(--primary);
  color: var(--white);
}

table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}

table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-light);
}

table tbody tr:hover {
  background-color: var(--bg-light);
}

.accordion-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--bg-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background-color: rgba(46, 107, 142, 0.1);
}

.accordion-header h3 {
  margin-bottom: 0;
  color: var(--primary);
}

.accordion-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  font-weight: bold;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: var(--white);
}

.accordion-item.active .accordion-content {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 107, 142, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  background-color: rgba(46, 107, 142, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.btn-secondary:hover {
  background-color: var(--accent-red);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

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

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.9);
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 2rem 0;
  padding: 1.5rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.footer-policies {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-policies a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: var(--accent-orange);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 2rem;
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content {
  flex: 1;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: fit-content;
}

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

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

.cookie-btn-accept:hover {
  background-color: var(--accent-orange);
}

.cookie-btn-decline {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
}

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

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

.cookie-btn-learn:hover {
  background-color: rgba(46, 107, 142, 0.05);
}

.disclaimer-banner {
  background: linear-gradient(135deg, rgba(46, 107, 142, 0.08) 0%, rgba(247, 168, 33, 0.08) 100%);
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--accent-orange);
  padding: 1.5rem 2rem;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}

.disclaimer-banner p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.context-limitation {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

.context-limitation h3 {
  color: var(--primary);
  margin-top: 0;
}

.context-limitation p {
  margin-bottom: 0.75rem;
}

.context-limitation ul {
  margin-left: 1.5rem;
}

.context-limitation li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-light);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-layout-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-layout-two-col.reverse {
    direction: ltr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner.active {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 3rem 1rem;
    margin-bottom: 2rem;
  }

  .content-section {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  main {
    margin-top: 100px;
  }

  header {
    padding: 0.5rem 0;
  }

  nav {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .nav-links a {
    padding: 0.75rem;
  }
}

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

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

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

  table {
    font-size: 0.9rem;
  }

  table th, table td {
    padding: 0.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-banner.active {
    padding: 1rem;
  }

  .cookie-content p {
    font-size: 0.85rem;
  }

  .cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
