:root {
  --primary-color: #2c3e50;
  --accent-color: #e67e22;
  --bg-card: #ffffff;
  --bg-page: #f4f7f6;
}

* {
  margin:0
}

body {
  background-color: var(--bg-page);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.legal-container {
  max-width: 850px;
  margin: 60px auto;
  padding: 40px;
  background: var(--bg-card);
  line-height: 1.7;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-top: 8px solid var(--accent-color);
}

h1 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  padding-top: 40px;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  display: flex;
  align-items: center;
  margin-top: 40px;
  color: var(--primary-color);
  font-size: 1.4rem;
  border-bottom: 2px dashed #ddd;
  padding-bottom: 10px;
}

h2::before {
  content: "⬢";
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 1.2rem;
}

p, li {
  color: #555;
  font-size: 1.05rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.heart-note {
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
  color: var(--accent-color);
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}

.btn-action:hover {
  background-color: #e67e22;
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.logo-img {
  height: 100px;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-premium {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 25px 0 20px 0;
  transition: all 0.3s ease;
  background: var(--bg-card);
  border-bottom: 1px solid var(--color-border);
}

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

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
}

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

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

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .logo-img {
  height: 55px;
}

.footer {
  background: linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
  color: #a8a29e;
  padding: 60px 20px 40px;
  margin-top: 50px;
  border-top: 4px solid #e67e22;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer-links a {
  color: #d6d3d1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a span {
  font-size: 1.1rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.footer-links a:hover {
  color: #fafaf9;
  background: rgba(230, 126, 34, 0.15);
  border-color: #e67e22;
  transform: translateY(-3px);
}

.footer-links a:hover span {
  filter: grayscale(0%);
}

.footer-divider {
  height: 2px;
  background: radial-gradient(circle, #44403c 0%, transparent 100%);
  margin: 10px 0;
}

.footer-text {
  text-align: center;
  font-size: 0.9rem;
  color: #78716c;
}

.footer-brand {
  color: #fafaf9;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px !important;
  letter-spacing: 1px;
}

.footer-text strong {
  color: #d6d3d1;
}

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

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-links a {
    justify-content: center;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .legal-container {
    margin: 20px;
    padding: 20px;
  }
}
