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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #FFFFFF;
  color: #2D3748;
  font-size: 17.5px;
  line-height: 1.75;
  font-weight: 400;
}

:root {
  --color-grey: #6B7280;
  --color-coral: #E07A5F;
  --color-teal: #4DA8A9;
  --color-linen: #FAF3E0;
  --color-text: #2D3748;
  --color-bg: #FFFFFF;
  --color-border: #E5E7EB;
  --spacing-xs: 12px;
  --spacing-sm: 24px;
  --spacing-md: 50px;
  --spacing-lg: 90px;
  --spacing-xl: 150px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 24px;
}

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

h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

p {
  margin-bottom: 16px;
  line-height: 1.70;
}

a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.3s ease-out;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: #E07A5F;
  border-bottom-color: #E07A5F;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 768px) {
  header .container {
    padding: 16px 20px;
  }
}

.logo {
  font-weight: 700;
  font-size: 24px;
  color: #1F2937;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo:hover {
  color: #E07A5F;
  border-bottom: none;
}

nav {
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  nav {
    gap: 20px;
  }
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s ease-out;
}

nav a:hover {
  color: #E07A5F;
  border-bottom-color: #E07A5F;
}

.container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

section {
  padding: 120px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.hero {
  background-color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}

.hero img {
  max-width: 100%;
  height: auto;
  margin-bottom: 60px;
  border-radius: 4px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1F2937;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}

.hero .subhead {
  font-size: 20px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero .subhead {
    font-size: 16px;
  }
}

.comparison-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .comparison-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
}

.comparison-block img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.comparison-text h3 {
  margin-top: 0;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .grid-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.card {
  background-color: #FAF3E0;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease-out;
}

.card:hover {
  background-color: #F5EDDF;
  border-color: #E07A5F;
}

.card h3 {
  margin-top: 0;
  color: #1F2937;
}

.card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 80px;
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
}

table thead {
  background-color: #FAF3E0;
  position: sticky;
  top: 80px;
  z-index: 10;
}

table th {
  padding: 18px;
  text-align: left;
  font-weight: 700;
  color: #1F2937;
  border-bottom: 2px solid #E5E7EB;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 14px;
}

table td {
  padding: 16px 18px;
  border-bottom: 1px solid #E5E7EB;
  color: #2D3748;
  font-size: 16px;
}

table tbody tr:nth-child(even) {
  background-color: #FAFAF9;
}

table tbody tr:hover {
  background-color: #FAF3E0;
}

.full-width-table {
  overflow-x: auto;
  margin-bottom: 100px;
}

.full-width-table table {
  min-width: 100%;
}

.accordion {
  margin-bottom: 80px;
}

.accordion-item {
  border: 1px solid #E5E7EB;
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background-color: #FAF3E0;
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1F2937;
  transition: background-color 0.3s ease-out;
}

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

.accordion-header.active {
  background-color: #E07A5F;
  color: #FFFFFF;
}

.accordion-toggle {
  font-size: 20px;
  transition: transform 0.38s ease-out;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 30px;
  background-color: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  animation: slideDown 0.38s ease-out;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.blog-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.blog-card:hover {
  border-color: #E07A5F;
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.1);
}

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

.blog-card-content {
  padding: 30px;
}

.blog-card h3 {
  margin-top: 0;
  font-size: 20px;
  color: #1F2937;
}

.blog-date {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.blog-excerpt {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  display: inline-block;
  color: #E07A5F;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s ease-out;
}

.blog-link:hover {
  border-bottom-color: #E07A5F;
}

.cta-button {
  display: inline-block;
  background-color: #6B7280;
  color: #FFFFFF;
  padding: 18px 40px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
  background-color: #4B5563;
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  border-bottom: none;
}

.cta-button.secondary {
  background-color: #E07A5F;
}

.cta-button.secondary:hover {
  background-color: #D9693F;
}

.cta-center {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

footer {
  background-color: #1F2937;
  color: #E5E7EB;
  padding: 80px 0 40px;
  margin-top: 120px;
  border-top: 1px solid #E5E7EB;
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 30px;
  }
}

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}

.footer-section h3 {
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  margin-top: 0;
}

.footer-section p {
  font-size: 14px;
  color: #D1D5DB;
  margin-bottom: 12px;
}

.footer-section a {
  display: block;
  font-size: 14px;
  color: #D1D5DB;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: #E07A5F;
  border-bottom: none;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #9CA3AF;
}

.disclaimer {
  background-color: #FAF3E0;
  border-left: 4px solid #E07A5F;
  padding: 30px;
  margin: 60px 0;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.6;
  color: #2D3748;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1F2937;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: #2D3748;
  transition: border-color 0.3s ease-out;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E07A5F;
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1F2937;
  color: #E5E7EB;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    text-align: center;
  }
}

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

.cookie-text {
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
}

.cookie-btn {
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-out;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-btn {
    width: 100%;
  }
}

.cookie-btn.accept {
  background-color: #E07A5F;
  color: #FFFFFF;
}

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

.cookie-btn.reject {
  background-color: transparent;
  color: #E5E7EB;
  border-color: #6B7280;
}

.cookie-btn.reject:hover {
  border-color: #E07A5F;
  color: #E07A5F;
}

.page-body {
  min-height: calc(100vh - 200px);
}

.thank-you-container {
  max-width: 800px;
  margin: 120px auto;
  text-align: center;
}

@media (max-width: 768px) {
  .thank-you-container {
    margin: 60px auto;
  }
}

.thank-you-container h1 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #1F2937;
}

.thank-you-container p {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 40px;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.list-inline li {
  margin-bottom: 16px;
  color: #2D3748;
  font-size: 16px;
}

.info-section {
  background-color: #FAF3E0;
  padding: 60px;
  border-radius: 4px;
  margin: 80px 0;
}

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

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.highlight {
  color: #E07A5F;
  font-weight: 600;
}

.text-balance {
  text-wrap: balance;
}

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

.article-content h1 {
  margin-bottom: 20px;
  margin-top: 0;
}

.article-meta {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.article-image {
  max-width: 100%;
  height: auto;
  margin: 60px 0;
  border-radius: 4px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');
}
