:root {
  --primary-mint: #98C1A9;
  --accent-sienna: #A65C3A;
  --accent-indigo: #2E3A5E;
  --accent-almond: #F2E9E1;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-light: #e8e8e8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.16rem;
  line-height: 1.85;
  color: var(--text-dark);
  background-color: var(--white);
}

h1 {
  font-family: Montserrat, 'Segoe UI', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h2 {
  font-family: Montserrat, 'Segoe UI', sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h3 {
  font-family: Montserrat, 'Segoe UI', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h4 {
  font-family: Montserrat, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.accent-text {
  color: var(--accent-sienna);
  font-style: italic;
  font-size: 1.3rem;
}

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

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

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

header.hide {
  transform: translateY(-100%);
}

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

.logo {
  font-family: Montserrat, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-sienna);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 35px;
  height: 35px;
}

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

nav a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  nav {
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  nav {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

footer {
  background-color: var(--accent-indigo);
  color: var(--white);
  padding: 60px 20px 30px;
  margin-top: 150px;
}

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

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

.footer-section h4 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

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

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

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

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 150px 20px;
}

@media (max-width: 768px) {
  section {
    padding: 80px 20px;
  }
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--accent-almond) 0%, rgba(152, 193, 169, 0.1) 100%);
  padding: 100px 20px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

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

.hero-text h1 {
  color: var(--accent-indigo);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: auto;
    padding: 60px 20px;
  }
}

.alt-section {
  background-color: var(--accent-almond);
}

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

.content-grid.reverse {
  direction: rtl;
}

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

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-grid.reverse {
    direction: ltr;
  }
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-family: Montserrat, 'Segoe UI', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

.card-link {
  color: var(--accent-sienna);
  font-weight: 600;
  font-size: 0.95rem;
}

.card-link:hover {
  color: var(--accent-indigo);
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-sienna) 0%, #8B4F35 100%);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(166, 92, 58, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 92, 58, 0.3);
  color: var(--white);
}

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--accent-almond) 0%, rgba(152, 193, 169, 0.08) 100%);
}

.cta-section h2 {
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--accent-almond);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(152, 193, 169, 0.2);
}

.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  background-color: var(--accent-sienna);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-toggle.open {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-light);
}

.faq-answer.open {
  display: block;
}

table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  background-color: var(--white);
}

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

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

tr:hover {
  background-color: var(--accent-almond);
}

.disclaimer {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer p {
  margin-bottom: 0.5rem;
  color: #856404;
}

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

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

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

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-sienna);
  box-shadow: 0 0 0 3px rgba(166, 92, 58, 0.1);
}

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

.form-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-sienna) 0%, #8B4F35 100%);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(166, 92, 58, 0.2);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 92, 58, 0.3);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-indigo);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-height: 150px;
}

.cookie-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background-color: #7db399;
}

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

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

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

.cookie-learn:hover {
  background-color: rgba(152, 193, 169, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-height: none;
  }
  
  .cookie-buttons {
    width: 100%;
    gap: 10px;
  }
  
  .cookie-button {
    flex: 1;
  }
}

.breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--accent-sienna);
}

.breadcrumb a:hover {
  color: var(--accent-indigo);
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--accent-sienna);
  font-weight: 600;
}

.back-link:hover {
  color: var(--accent-indigo);
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
}

.article-image {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-articles {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-light);
}

.related-articles h3 {
  margin-bottom: 2rem;
}

.related-card {
  background-color: var(--accent-almond);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.related-card:hover {
  background-color: rgba(152, 193, 169, 0.2);
  transform: translateX(5px);
}

.related-card a {
  font-weight: 600;
}

.list-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.list-item:before {
  content: "•";
  color: var(--accent-sienna);
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
}

.highlight {
  background-color: rgba(152, 193, 169, 0.2);
  padding: 2px 6px;
  border-radius: 2px;
}
