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

body {
  font-family: 'Anton';
  background linear-gradient(#ffdad5, #f7e3d9);
}

.contact-container {
  height: 100vhl display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.contact-left-title h2 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 5px;
}

.contact-left-title hr {
  border: none;
  width: 150px;
  height: 5px;
  background-color: #000000;
  border-radius: 10px margin-bottom: 20px;
}

.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}

.contact-left textarea {
  height: 140px;
  border-radius: 50px;
  padding-top: 15px
}

.contact-inputs:focus {
  border: 2px solid #ff994f;
}

.contact-inputs:placeholder {
  color: #a9a9a9;
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #858dff, #6684f9);
  cursor: pointer;
}

.contact-left button img {
  height: 15px;
}

.contact-right img {
  width: 500px;
}

@media (max-width:800px) {
  .contact-inputs {
    width: 80vw;
  }
}


.achievement-detail {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.achievement-summary {
  font-family: 'Anton', sans-serif;
  font-size: 35px;
  font-weight: 400;
  margin-top: 20px;
  text-transform: uppercase;
}

body {
  font-family: 'Epilogue', sans-serif;
}

body .highlighted-text {
  background-color: white !important;
  color: black !important;
  padding: 5px 15px; /* Adjust padding for better fit */
  border-radius: 5px;
  display: block; /* Ensures the box spans the text properly */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin: 5px 0; /* Adds spacing between items */
  text-align: left; /* Aligns text to the left if needed */
}


.sqs-html-content ul {
  list-style: none; /* Removes bullets */
  padding: 0;
  margin: 0;
}

