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

:root {
  --primary: #2C3E50;
  --secondary: #A8DADC;
  --neutral-light: #E0D9C5;
  --neutral-dark: #5D6D7E;
  --accent: #F7CAC9;
  --white: #FFFFFF;
  --black: #000000;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--primary);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.5rem;
  max-width: 700px;
  line-height: 1.7;
  text-align: justify;
}

a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

button {
  font-family: 'Georgia', serif;
  cursor: pointer;
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1.2rem 2rem;
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
}

.logo:hover {
  color: var(--secondary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
}

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

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.01em;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

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

nav a.active {
  color: var(--secondary);
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(168, 218, 220, 0.2);
}

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

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

.footer-section h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: 'Trebuchet MS', sans-serif;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  max-width: 100%;
  text-align: left;
}

.footer-section a {
  color: var(--neutral-light);
  border-bottom: 1px solid transparent;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

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

.footer-section li {
  margin-bottom: 0.6rem;
}

.footer-section li a {
  margin-bottom: 0;
}

.footer-divider {
  border-top: 1px solid rgba(168, 218, 220, 0.3);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--neutral-light);
}

.disclaimer-footer {
  background-color: rgba(168, 218, 220, 0.1);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--neutral-light);
}

section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin: 2rem auto;
  display: block;
}

.hero-text {
  max-width: 900px;
  margin: 2rem auto;
}

.hero-quote {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--secondary);
  margin: 2rem 0;
  padding: 2rem;
  border-left: 4px solid var(--accent);
  background-color: rgba(168, 218, 220, 0.05);
  border-radius: 2px;
}

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

.card {
  background: var(--white);
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-family: 'Trebuchet MS', sans-serif;
}

.card-text {
  font-size: 0.95rem;
  color: var(--neutral-dark);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--secondary);
  font-weight: 500;
  align-self: flex-start;
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  nav {
    gap: 1.5rem;
  }
}

.button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  margin: 0.5rem 0.5rem 0.5rem 0;
}

.button:hover {
  background-color: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(168, 218, 220, 0.3);
}

.button-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.button-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
  font-family: 'Georgia', serif;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--neutral-light);
  border-radius: 2px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: var(--primary);
  background-color: var(--white);
  transition: var(--transition);
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(168, 218, 220, 0.1);
}

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

.form-disclaimer {
  background-color: rgba(232, 217, 197, 0.2);
  padding: 1.2rem;
  border-left: 4px solid var(--accent);
  margin: 2rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  border-radius: 2px;
}

.list-styled {
  list-style: none;
  margin: 1.5rem 0;
}

.list-styled li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.list-styled li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 1.2rem;
}

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

.glossary-item {
  padding: 1.5rem;
  background: rgba(224, 217, 197, 0.1);
  border-radius: 2px;
  border-left: 3px solid var(--secondary);
  transition: var(--transition);
  cursor: help;
}

.glossary-item:hover {
  background: rgba(224, 217, 197, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.glossary-term {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Trebuchet MS', sans-serif;
}

.glossary-definition {
  font-size: 0.9rem;
  color: var(--neutral-dark);
  line-height: 1.5;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--neutral-light);
}

tr:hover {
  background-color: rgba(168, 218, 220, 0.05);
}

.comparison-table {
  margin: 2rem 0;
}

.faq-section {
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--neutral-light);
  padding-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-question::after {
  content: '▼';
  font-size: 0.8rem;
  color: var(--secondary);
}

.faq-answer {
  padding: 1rem 0 0 0;
  color: var(--neutral-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.related-topics {
  background-color: rgba(168, 218, 220, 0.08);
  padding: 2rem;
  border-radius: 2px;
  border-left: 4px solid var(--secondary);
  margin: 3rem 0;
}

.related-topics h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.related-topics ul {
  list-style: none;
}

.related-topics li {
  margin-bottom: 0.8rem;
}

.related-topics a {
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.related-topics a:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neutral-light), transparent);
  margin: 4rem 0;
}

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

.contact-block {
  padding: 2rem;
  background-color: rgba(224, 217, 197, 0.1);
  border-radius: 2px;
  border: 1px solid var(--neutral-light);
}

.contact-block h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-block p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  text-align: left;
}

.contact-block a {
  color: var(--secondary);
}

.contact-block a:hover {
  color: var(--primary);
}

.disclaimer-block {
  background-color: rgba(247, 202, 201, 0.15);
  border: 1px solid var(--accent);
  border-radius: 2px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--accent);
}

.disclaimer-block h3 {
  color: var(--primary);
  margin-top: 0;
}

.disclaimer-block p {
  margin-bottom: 1rem;
  text-align: left;
}

.disclaimer-block strong {
  color: var(--primary);
  font-weight: 600;
}

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

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

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  font-weight: 500;
}

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

.cookie-btn-accept:hover {
  background-color: var(--neutral-light);
}

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

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

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

.cookie-btn-more:hover {
  background-color: rgba(168, 218, 220, 0.1);
}

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
}

.center-text {
  text-align: center;
}

.text-muted {
  color: var(--neutral-dark);
  font-size: 0.9rem;
}

.highlighted {
  background-color: rgba(168, 218, 220, 0.15);
  padding: 0.2em 0.4em;
  border-radius: 2px;
}

.spacer-large {
  height: 3rem;
}

.spacer-small {
  height: 1rem;
}

blockquote {
  font-style: italic;
  color: var(--neutral-dark);
  border-left: 4px solid var(--secondary);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

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

em {
  font-style: italic;
  color: var(--neutral-dark);
}
