@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


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


body {
  	font-family: "Inter", sans-serif;
  	background: linear-gradient(to right, #f5f7fa, #e4ecf5);
	color: #2f4f6f;
  	line-height: 1.6;
  	padding: 40px 20px;

}


section {
  width: 100%;
  padding: 50px 0;
}


.main-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

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


h2 {
 font-family: "Playfair Display", serif;
font-size: 20px;
  margin-bottom: 20px;
  color: #db4c77;
  border-bottom: 2px solid #d9e2ec;
  padding-bottom: 10px;
  text-transform: uppercase;
}




.main-nav {
  margin-bottom: 80px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #2f4f6f;
  padding: 12px 24px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: #4f7aa3;
  text-decoration: underline wavy #db4c77 3px;
}


.bulleted-list {
	padding-left: 30px;
  list-style-type: disc;
}

.bulleted-list li {
  position: relative;
  margin-bottom: 15px;
  font-size: 18px;
}



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

.outline-list  li {
  margin-bottom: 12px;
  font-size: 18px;
}

.outline-list ol {
  list-style-type: upper-alpha;
  margin-top: 10px;
  padding-left: 30px;
}

.outline-list ol li {
  margin-bottom: 8px;
  font-size: 17px;
}


.link-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.text-link {
  color: #3488c2;
  text-decoration: underline;
  font-size: 18px;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: #003bb3;
  text-decoration-thickness: 3px;
}


.filled-btn {
  text-decoration: none;
  background: #3488c2;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.filled-btn:hover {
  background: #e98eab;
  transform: scale(1.05);
}


.outline-btn {
  text-decoration: none;
  border: 2px solid #e98eab;
  color: #e98eab;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  background: #e98eab;
  color: #fff;
}


.underline-link {
  text-decoration: none;
  color: #14588d;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
}

.underline-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: 0;
  background: #14588d;
  transition: width 0.3s ease;
}

.underline-link:hover::after {
  width: 100%;
}


.pill-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #f4bbcc, #e98eab);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.25);
  transition: all 0.3s ease;
}

.pill-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.35);
}


@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }


  h2 {
    font-size: 24px;
  }

  .link-btn {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
}