.elementor-27 .elementor-element.elementor-element-166a4ce{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f1953af */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #faf9f6;
  color: #2c2c2c;
  line-height: 1.7;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #3d3d2d, #4a4a38, #3d3d2d);
  color: white;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.05) 20px,
    rgba(255,255,255,0.05) 40px
  );
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-right {
  width: 400px;
  height: 400px;
  background: rgba(166,167,124,0.15);
  top: -100px;
  right: -100px;
}

.hero-glow-left {
  width: 250px;
  height: 250px;
  background: rgba(166,167,124,0.08);
  bottom: -100px;
  left: -100px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.document-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(166,167,124,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
}

.meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* CONTENT */

.content-section {
  padding: 80px 0;
}

.content-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.sidebar {
  width: 280px;
  flex-shrink: 0;
}

.sticky {
  position: sticky;
  top: 30px;
}

.sidebar-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sidebar-card h3 {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6b6b6b;
  margin-bottom: 20px;
}

.toc,
.related-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc a,
.related-links a {
  text-decoration: none;
  color: #6b6b6b;
  padding: 10px 12px;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.toc a:hover,
.related-links a:hover {
  background: #faf9f6;
  color: #a6a77c;
}

/* MAIN CONTENT */

.main-content {
  flex: 1;
}

.content-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.legal-section {
  padding: 50px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.section-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(166,167,124,0.15);
  color: #a6a77c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.section-header h2 {
  font-size: 34px;
  font-family: Georgia, serif;
}

.section-content {
  padding-left: 60px;
}

.section-content p {
  margin-bottom: 20px;
  color: #6b6b6b;
}

.section-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.section-content li {
  margin-bottom: 10px;
  color: #6b6b6b;
}

.section-content strong {
  color: #2c2c2c;
}

hr {
  border: none;
  border-top: 1px solid #e8e6e0;
}

/* FOOTER */

.content-footer {
  background: #faf9f6;
  border-top: 1px solid #e8e6e0;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.content-footer p {
  color: #6b6b6b;
  font-size: 14px;
}

.content-footer a {
  color: #a6a77c;
  text-decoration: none;
}

.back-top {
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .content-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .sticky {
    position: static;
  }

  .section-content {
    padding-left: 0;
  }

  .legal-section {
    padding: 35px 25px;
  }

  .content-footer {
    padding: 25px;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-header {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 28px;
  }
}/* End custom CSS */