@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

:root {
  --primary-purple: hsl(266, 99%, 53%);
  --surface-light: hsl(210, 20%, 95%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --grey-500: hsl(0, 0%, 53%);
  --purple-light: hsl(266, 99%, 95%);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  line-height: 1.6;
}

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

/* Header */
header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--purple-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.header-menu a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}

.header-menu a:hover {
  color: var(--primary-purple);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-purple);
}

.cta-button {
  background: var(--primary-purple);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(123, 31, 162, 0.3);
}

/* Content Page */
.content-page {
  padding: 80px 0;
  background: var(--white);
  min-height: calc(100vh - 200px);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 24px;
  text-align: center;
}

.content-subtitle {
  font-size: 20px;
  color: var(--grey-500);
  margin-bottom: 60px;
  text-align: center;
}

.content-body {
  background: var(--surface-light);
  padding: 60px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}

.content-body h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-purple);
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.content-body ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-body ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-body li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.content-body strong {
  font-weight: 600;
  color: var(--black);
}

.content-body a {
  color: var(--primary-purple);
  text-decoration: underline;
}

.content-body a:hover {
  color: hsl(266, 99%, 40%);
}

.warning-box {
  background: hsl(0, 100%, 95%);
  border-left: 4px solid hsl(0, 100%, 50%);
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.warning-box strong {
  display: block;
  margin-bottom: 10px;
  color: hsl(0, 100%, 30%);
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.back-link:hover {
  color: hsl(266, 99%, 40%);
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-purple);
}

.footer-section p,
.footer-section a {
  color: var(--surface-light);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--grey-500);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 12px 0;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 12px;
  }

  .logo-container {
    gap: 8px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 20px;
  }

  .header-nav {
    flex-direction: row;
    gap: 16px;
    flex: 1;
    justify-content: space-between;
    align-items: center;
  }

  .header-menu {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .header-menu a {
    font-size: 13px;
    font-weight: 600;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 13px;
    white-space: nowrap;
  }

  .container {
    padding: 0 15px;
  }

  .content-title {
    font-size: 36px;
  }

  .content-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .content-body {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .content-body h2 {
    font-size: 24px;
  }

  .content-body h3 {
    font-size: 18px;
  }

  .content-body ol,
  .content-body ul {
    margin-left: 15px;
  }

  .content-body li {
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .warning-box {
    padding: 15px;
    margin: 25px 0;
  }

  .warning-box strong {
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section h4 {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .content-title {
    font-size: 28px;
  }

  .content-body {
    padding: 20px 15px;
  }

  .content-body h2 {
    font-size: 20px;
  }

  .content-body h3 {
    font-size: 16px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 20px;
  }

  .warning-box {
    padding: 12px;
  }

  .content-body ol,
  .content-body ul {
    margin-left: 10px;
  }
}
