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


body {
  font-family: "Merriweather", serif;
  background: #f5f5f5;
  padding: 40px 0;
  color: #333;
}


h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 40px 0 15px;
}


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


.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


.main-nav {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.main-nav a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ce4257;
  padding: 8px 12px;
  transition: 0.3s ease;
}

.main-nav a:hover {
  background: #ce4257;
  color: white;
  border-radius: 4px;
}


.custom-bullets {
  list-style: none;
  margin-left: 20px;
}

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

.custom-bullets li::before {
  content: "◆";
  color: #ce4257;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}


.outline-list {
  list-style-type: upper-roman;
  margin-left: 30px;
}

.outline-list li {
  margin-bottom: 10px;
}

.sub-outline {
  list-style-type: lower-alpha;
  margin-top: 10px;
  margin-left: 30px;
}


.link-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
}


.body-link {
  color: #0066cc;
  text-decoration: underline;
  transition: 0.3s;
}

.body-link:hover {
  color: #003366;
}


.filled-btn {
  background: #ce4257;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

.filled-btn:hover {
  background: #a83245;
}


.outline-btn {
  border: 2px solid #ce4257;
  padding: 12px 20px;
  text-decoration: none;
  color: #ce4257;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #ce4257;
  color: white;
}


.underline-link {
  text-decoration: underline wavy #ce4257;
  color: #333;
  font-weight: 600;
}

.underline-link:hover {
  color: #ce4257;
}


.funky-btn {
  padding: 12px 20px;
  background: linear-gradient(45deg, #ce4257, #ff7f51);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

.funky-btn:hover {
  transform: scale(1.05);
}