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

html, body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.75;
  color: #1E3A5F;
  background-color: #F5F6F5;
}

body {
  padding-top: 80px;
}

h1 {
  font-family: 'Georgia', 'Playfair Display', serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #1E3A5F;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Georgia', 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1E3A5F;
  margin-bottom: 24px;
  margin-top: 40px;
}

h3 {
  font-family: 'Georgia', 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1E3A5F;
  margin-bottom: 16px;
}

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

em {
  color: #C9A96E;
  font-style: italic;
}

.container-main {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 90px;
}

@media (max-width: 1024px) {
  .container-main {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container-main {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  h3 {
    font-size: 24px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #1E3A5F;
  z-index: 1000;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 90px;
}

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

.logo {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  color: #F5F6F5;
  text-decoration: none;
}

.logo:hover {
  color: #C9A96E;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

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

.nav-links a {
  color: #F5F6F5;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #C9A96E;
}

footer {
  background-color: #1E3A5F;
  color: #F5F6F5;
  margin-top: 80px;
  padding: 60px 90px;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-section h3 {
  color: #F5F6F5;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-section a {
  color: #C9A96E;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(197, 166, 110, 0.3);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

.hero {
  position: relative;
  background-color: #1E3A5F;
  color: #F5F6F5;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #F5F6F5;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  color: #C9A96E;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: #1E3A5F;
  color: #F5F6F5;
}

.section-dark h2, .section-dark h3 {
  color: #F5F6F5;
}

.section-light {
  background-color: #F5F6F5;
  color: #1E3A5F;
}

.row {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 30px;
  }
}

.col-image {
  flex: 1;
}

.col-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.col-text {
  flex: 1;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

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

.comparison-card {
  border: 2px solid #C9A96E;
  padding: 24px;
  background-color: #F5F6F5;
  text-align: center;
}

.section-dark .comparison-card {
  background-color: rgba(245, 246, 245, 0.05);
  border-color: #C9A96E;
}

.comparison-card h3 {
  color: #C9A96E;
  margin-bottom: 12px;
}

.callout {
  background-color: rgba(197, 166, 110, 0.1);
  border-left: 4px solid #C9A96E;
  padding: 24px;
  margin: 40px 0;
}

.section-dark .callout {
  background-color: rgba(197, 166, 110, 0.1);
}

.link-button {
  display: inline-block;
  background: linear-gradient(90deg, #F5F6F5 0%, #C9A96E 100%);
  color: #1E3A5F;
  padding: 14px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-right: 16px;
  margin-bottom: 16px;
}

.link-button:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(197, 166, 110, 0.2);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

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

.card {
  background-color: #F5F6F5;
  border: 1px solid #C9A96E;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-dark .card {
  background-color: rgba(245, 246, 245, 0.05);
  border-color: #C9A96E;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 24px rgba(197, 166, 110, 0.15);
  border-color: #C9A96E;
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin-top: 0;
}

.card-body a {
  color: #C9A96E;
  text-decoration: none;
  font-weight: 600;
}

.card-body a:hover {
  text-decoration: underline;
}

.accordion {
  margin: 40px 0;
}

.accordion-item {
  border: 1px solid #C9A96E;
  margin-bottom: 12px;
  background-color: #F5F6F5;
}

.section-dark .accordion-item {
  background-color: rgba(245, 246, 245, 0.05);
}

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

.section-dark .accordion-header {
  background-color: rgba(245, 246, 245, 0.05);
  color: #F5F6F5;
}

.accordion-header:hover {
  background-color: rgba(197, 166, 110, 0.1);
}

.accordion-header.active {
  background-color: #C9A96E;
  color: #1E3A5F;
}

.accordion-body {
  padding: 24px;
  display: none;
  color: #1E3A5F;
}

.section-dark .accordion-body {
  color: #F5F6F5;
}

.accordion-body.show {
  display: block;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #C9A96E;
  border-radius: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: #1E3A5F;
}

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

.form-disclaimer {
  background-color: #F5F6F5;
  border: 1px solid #C9A96E;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 4px;
  font-size: 14px;
}

.section-dark .form-disclaimer {
  background-color: rgba(245, 246, 245, 0.05);
}

.btn-submit {
  background-color: #C9A96E;
  color: #1E3A5F;
  padding: 14px 32px;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #A88860;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E3A5F;
  color: #F5F6F5;
  padding: 24px;
  z-index: 999;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #C9A96E;
  color: #1E3A5F;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #F5F6F5;
  border: 1px solid #C9A96E;
}

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

.cookie-btn-learn {
  background-color: transparent;
  color: #C9A96E;
  border: none;
  text-decoration: underline;
  padding: 10px 0;
}

.cookie-btn-learn:hover {
  color: #F5F6F5;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
}

.disclaimer-section {
  background-color: rgba(197, 166, 110, 0.1);
  border: 1px solid #C9A96E;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.section-dark .disclaimer-section {
  background-color: rgba(197, 166, 110, 0.1);
}

.disclaimer-section h3 {
  color: #C9A96E;
}

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

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