:root {
  --primary-color: #E0F2F1;
  --accent-primary: #009688;
  --accent-secondary: #4DB6AC;
  --accent-tertiary: #80CBC4;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-decoration: none;
  cursor: pointer;
}

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

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-primary);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
}

.hero-section {
  position: relative;
  height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
}

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

.hero-content h1 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--bg-white);
  font-size: 1.1rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
}

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

.two-column-layout img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.two-column-text {
  padding: 1rem;
}

.two-column-text h3 {
  margin-bottom: 1.5rem;
}

.two-column-text p {
  margin-bottom: 1.2rem;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

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

.card {
  background: var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-tertiary);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 150, 136, 0.15);
  transform: translateY(-5px);
}

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

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.full-width-section {
  background-color: var(--primary-color);
  padding: 4rem 2rem;
  margin: 3rem 0;
}

.full-width-section-content {
  max-width: 1400px;
  margin: 0 auto;
}

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

.list-section ul {
  list-style: none;
  columns: 2;
  gap: 2rem;
  margin-top: 2rem;
}

.list-section li {
  background: var(--primary-color);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent-primary);
  border-radius: 4px;
  break-inside: avoid;
}

.list-section li:before {
  content: "✓";
  color: var(--accent-primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

.table-section {
  overflow-x: auto;
  margin-top: 2rem;
}

.table-section table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
}

.table-section th {
  background-color: var(--accent-primary);
  color: var(--bg-white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.table-section td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.table-section tr:hover {
  background-color: var(--primary-color);
}

.disclaimer-section {
  background: linear-gradient(135deg, #FFF9C4 0%, #E0F2F1 100%);
  border-left: 4px solid #FF6F00;
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-section h3 {
  color: #FF6F00;
  margin-bottom: 1rem;
}

.disclaimer-section p {
  color: var(--text-dark);
  margin: 0;
  font-weight: 500;
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--accent-secondary);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #cccccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--accent-secondary);
  cursor: pointer;
}

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

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

.footer-links a {
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  font-size: 0.85rem;
  color: #999;
}

.disclaimer-text {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--accent-primary);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: var(--accent-primary);
  color: var(--text-dark);
}

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

.cookie-btn.reject {
  background-color: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.cookie-btn.reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn.learn {
  background-color: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.cookie-btn.learn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

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

.modal-content {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.close-modal:hover {
  color: var(--accent-primary);
}

.newsletter-section {
  background: var(--primary-color);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 3rem auto;
  max-width: 600px;
}

.newsletter-section h3 {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
}

.newsletter-form button {
  padding: 0.7rem 1.5rem;
  background-color: var(--accent-primary);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--accent-secondary);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 1rem;
  }
  
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .list-section ul {
    columns: 1;
  }
  
  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
  
  .navbar {
    padding: 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}
