:root {
  --font-main: Tahoma, Geneva, sans-serif;
  --color-brand: #111827;
  --color-cta: #E84393;
  --text-muted: #888;
  --border: #ddd;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-brand);
  background: #fff;
}

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

table {
  max-width: 100%;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--color-brand);
}

h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--color-brand);
}

h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--color-brand);
}

h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--color-brand);
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--color-brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-cta);
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 6px;
}

.btn {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  text-align: center;
  line-height: 1.6;
}

.btn:hover {
  background: #c2185b;
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 67, 147, 0.35);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
  line-height: 1.6;
}

.btn-outline:hover {
  background: #fff;
  color: var(--color-brand);
}

.container {
  width: 90%;
  max-width: 1280px;
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--color-brand);
  color: #fff;
  padding: 8px 16px;
  z-index: 10001;
  font-size: 14px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  .btn, .btn-outline {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }
  .btn, .btn-outline {
    padding: 11px 20px;
    font-size: 14px;
  }
}