@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Lato:wght@400;700&display=swap');

:root {
  --color-primary: #48A9A6;
  --color-warm-sand: #F4D35E;
  --color-muted-coral: #EE964B;
  --color-deep-slate: #22333B;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-gray: #E0E0E0;
  --color-dark-gray: #666666;
  --font-heading: 'Open Sans', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #333333;
  line-height: 1.6;
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
}

h1 {
  font-size: 3.5rem;
  color: var(--color-deep-slate);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-deep-slate);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  color: var(--color-deep-slate);
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #444444;
}

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

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

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

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: var(--color-deep-slate);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

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

nav a.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.25rem;
}

main {
  margin-top: 80px;
}

section {
  padding: 100px 0;
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  background-color: #f9f9f9;
  padding: 120px 0;
  margin-top: 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

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

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 8px;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 0;
}

.two-column:nth-child(even) {
  direction: rtl;
}

.two-column:nth-child(even) > * {
  direction: ltr;
}

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

.text-block ul {
  margin-left: 2rem;
}

.text-block li {
  margin-bottom: 0.75rem;
}

.column-image img {
  width: 100%;
  height: auto;
  max-width: 450px;
  border-radius: 8px;
}

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

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(72, 169, 166, 0.15);
  border-color: var(--color-warm-sand);
  transform: translateY(-3px);
}

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

.card p {
  font-size: 1rem;
  color: #666;
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
}

.disclaimer-block {
  background-color: #f0f8f7;
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer-block h3 {
  color: var(--color-deep-slate);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.disclaimer-block p {
  color: #555;
  font-size: 1rem;
}

.cta-button {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #3a8a87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 169, 166, 0.3);
}

footer {
  background-color: var(--color-deep-slate);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-warm-sand);
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 2.5rem;
  border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(72, 169, 166, 0.1);
}

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

.form-submit {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: #3a8a87;
  transform: translateY(-2px);
}

.form-disclaimer {
  background-color: #fffbf0;
  border: 1px solid var(--color-warm-sand);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #666;
}

.form-disclaimer strong {
  color: var(--color-deep-slate);
}

.success-message {
  background-color: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  font-size: 1.1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-deep-slate);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #ddd;
}

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

.cookie-btn {
  border: none;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.cookie-btn-accept:hover {
  background-color: #3a8a87;
}

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

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

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

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

.hidden {
  display: none;
}

.accent-section {
  background-color: #f0f8f7;
}

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

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
}

table td {
  border-bottom: 1px solid var(--color-gray);
  padding: 1rem;
  color: #555;
}

table tr:hover {
  background-color: #f5f5f5;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content,
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  footer .footer-content {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  nav ul {
    gap: 0.5rem;
  }
  
  nav a {
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  p, li {
    font-size: 0.95rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}
