:root {
  --primary: #2C3E50;
  --primary-light: #34495E;
  --secondary: #A8DADC;
  --accent: #E0A865;
  --accent-light: #E8B875;
  --neutral-light: #F4F6F7;
  --neutral-gray: #EFEFEF;
  --border-color: #C1D4E0;
  --text-dark: #2C3E50;
  --text-muted: #5D6D7B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Merriweather", "Georgia", serif;
  color: var(--text-dark);
  background-color: white;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-light);
}

button, .btn {
  font-family: "Montserrat", sans-serif;
  padding: 12px 32px;
  border: none;
  border-radius: 0;
  background-color: var(--accent);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
}

button.btn-secondary, .btn.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-dark);
}

button.btn-secondary:hover, .btn.btn-secondary:hover {
  background-color: #95CCDB;
}

button.btn-secondary-outline, .btn.btn-secondary-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--secondary);
}

button.btn-secondary-outline:hover, .btn.btn-secondary-outline:hover {
  background-color: var(--secondary);
  color: var(--text-dark);
}

header {
  background-color: white;
  border-bottom: 2px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 100px 0;
}

section:nth-child(even) {
  background-color: var(--neutral-gray);
}

.hero {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(168, 218, 220, 0.5) 100%), url('../images/hero.jpg') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 200px 1rem;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: #F4F6F7;
  font-size: 1.25rem;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.grid-2col.reverse {
  direction: rtl;
}

.grid-2col.reverse > * {
  direction: ltr;
}

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

.grid-6col {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.image-block {
  overflow: hidden;
  border-radius: 0;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-block:hover img {
  transform: scale(1.02);
}

.callout {
  background-color: var(--secondary);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0;
}

.callout h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.callout p {
  margin: 0;
  color: var(--text-dark);
}

.accordion {
  margin-bottom: 2rem;
}

.accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
  border-radius: 0;
}

.accordion-header {
  background-color: var(--neutral-light);
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  user-select: none;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #E8F1F4;
}

.accordion-toggle {
  font-size: 1.5rem;
  color: var(--accent);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: white;
  color: var(--text-muted);
  line-height: 1.8;
}

.accordion-content.active {
  display: block;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 168, 101, 0.1);
}

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

.form-disclaimer {
  background-color: var(--neutral-light);
  border: 1px solid var(--border-color);
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: 0;
}

footer {
  background-color: var(--primary);
  color: white;
  padding: 3rem 0 1rem;
}

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

footer h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

footer a {
  color: var(--secondary);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

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

footer .disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

footer .copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.warning-block {
  background-color: var(--secondary);
  border: 3px solid var(--accent);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0;
}

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

.warning-block p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.warning-block strong {
  color: var(--primary);
}

.blog-card {
  background-color: white;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 0;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.blog-meta {
  font-size: 0.85rem;
  color: rgba(44, 62, 80, 0.6);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 0;
}

.blog-article h2 {
  margin: 2rem 0 1rem;
}

.blog-article h3 {
  margin: 1.5rem 0 0.75rem;
}

.blog-article p {
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.blog-article ul, .blog-article ol {
  margin: 1rem 0 1rem 2rem;
}

.blog-article li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.blog-article strong {
  color: var(--primary);
  font-weight: 600;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-section img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

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

.value-card {
  background-color: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 0;
  border: 1px solid var(--border-color);
}

.value-card h4 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-section {
  background-color: var(--secondary);
  text-align: center;
  padding: 4rem 1rem;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-radius: 0;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-banner button {
  white-space: nowrap;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

th, td {
  border: 1px solid var(--border-color);
  padding: 1rem;
  text-align: left;
}

th {
  background-color: var(--neutral-light);
  font-weight: 600;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
}

tr:nth-child(even) {
  background-color: var(--neutral-gray);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: white;
    border-bottom: 2px solid var(--border-color);
    padding: 1rem;
    gap: 0;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 0.75rem 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .grid-2col,
  .grid-3col,
  .grid-6col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-2col.reverse {
    direction: ltr;
  }

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

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

  .cookie-banner-buttons {
    justify-content: center;
  }

  .hero {
    padding: 150px 1rem;
    min-height: 400px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

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

  section {
    padding: 60px 0;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem;
  }
}

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

  h2 {
    font-size: 1.35rem;
  }

  p {
    font-size: 0.95rem;
  }

  button, .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 100px 1rem;
    min-height: 300px;
  }

  .grid-3col {
    grid-template-columns: 1fr;
  }

  section {
    padding: 40px 0;
  }
}
