body {
  height: 100%;
  background: linear-gradient(to right, #023c3c, #1a1a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'lato';
  margin: 0px;
}

@keyframes rise {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

h1 {
  color: lightgrey;
  margin-bottom: 30px;
}

.logo {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform-origin: top center;
  gap: 20px;
  animation: rise 1.0s ease backwards;
}

#brainlogo {
  width: 150px;
  height: auto;
}

#protectlogo {
  width: 400px;
  height: auto;
}

.logo h2 {
  margin-top: -5px;
  color: lightgrey;
}

.contact-button {
  width: auto;
  border-radius: 30px;
  background-color: #1E9481;
  color: white;
  border: none;
  transform: translateY(-20px);
  padding: 12px 24px;
  font-size: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, scale 0.3s ease;
  outline: none;
  animation: rise 1.0s ease backwards;
  animation-delay: 0.1s;
}

.contact-button:hover {
  cursor: pointer;
  transform: translateY(-25px) scale(1.05);
  box-shadow: 0 0 12px rgba(30, 148, 129, 0.7);
}

.cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  animation: rise 1.0s ease backwards;
  animation-delay: 0.2s;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-clip: padding-box;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  width: 40%;
  height: 400px;
  padding: 20px;
  background-image: linear-gradient(to bottom, rgba(100, 100, 100, 0.1), rgba(255, 255, 255, 0.2));
}

.card h2 {
  color: #1E9481;
  text-align: center;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  position: relative;
  padding-left: 48px;
  line-height: 1.2;
  margin: 20px;
  color: lightgrey;
  font-weight: bold;
}

li::before {
  content: "✔️";
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: green;
  margin-right: 20px;
}

/* Taken from original promotional website */

.footer-section {
  margin-top: 20px;
  padding: 0px;
  box-sizing: border-box;
  width: 100%;
  height: 300px;
  background-color: #4C4C4C;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.footer-top {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  margin-bottom: 20px;
}

.footer-text {
  display: flex;
  justify-content: center;
}

.footer-wrapper {
  margin-right: 50px;
}

.privacy {
    border-top-style: solid;
    border-color: white;
    padding: 10px 0px 0px;
    border-width: 1px;
    width: 80%;
    text-align: center;
}

footer {
    display: block;
    unicode-bidi: isolate;
}

.footer-image {
    height: 167px;
    width: 254px;
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

footer a {
  color: white;
}

b {
    font-weight: bolder;
}

p {
  margin: 0px;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  position: relative;
  padding-left: 28px; /* narrower since icon is smaller */
  line-height: 1.2;
  margin: 20px;
  color: lightgrey;
  font-weight: bold;
}

/* Replace emoji bullet with a CSS circle (or swap to your own SVG) */
li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em; /* vertically center relative to line-height */
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1E9481; /* your brand teal */
}

/* If you prefer a checkmark via background SVG instead of a circle:
li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231E9481' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  border-radius: 2px;
}
*/