.interest-container {
    color: #FFFFFF;
    text-align: left;
    padding: 2em 2em;
}

/* .interest-1 { background: linear-gradient(to bottom right, #FF9A66, #FF7043);}
.interest-3 {background: linear-gradient(to bottom right, #00BCD4, #0097A7); } 
.interest-2 { background: linear-gradient(to bottom right, #FF6B9D, #E91E63);} */


.interest-1 { background: linear-gradient(to bottom right, #E53935, #B71C1C); }
.interest-2 { background: linear-gradient(to bottom right, #df7301, #E65100); }
.interest-3 { background: linear-gradient(to bottom right, #558B2F, #3c6919); }
    
.interest-list-headers-container {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    margin-bottom: 2.25em;
}

.registration-link {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: #111827;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.registration-link:hover {
  background-color: #FFFFFF;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.interest-header {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.interst-icon {
    display: inline-block;
    align-self: flex-start;
    padding: 1.4em 1.1em;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #4B5563;
    margin: 0;
}

.icon {
    font-size: 2.5em;
    color: #FFFFFF;
}

.interest-header-text h2 {
    font-family: "Caveat", sans-serif;
    font-size: 1.875rem;
    font-weight: 500;
    margin: 0;
    margin-bottom: 0.5em;
}

.interest-header-text p{
    font-size: 1.125rem;
    margin: 0;
    margin-bottom: 0.5em;
}

.interest-sub-text {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.25em;
    line-height: 1.5;
    margin-top: -1.25em;
}

.alternatives {
    background: linear-gradient(to bottom right, #F4FF5C, #F0E68C);
    color: #111827;
}

.alternatives h2 {
    font-family: "Caveat", sans-serif;
    font-size: 1.875rem;
    font-weight: 400;
    margin: 0;
}

.alternatives p {
    color: #1F2937;
    line-height: 1.5;
    padding: 0 2em;
}

.alternatives p a{
    color: #185FA5;
    font-weight: 600;
    /* text-decoration: none; */
}

.interest-sub-text a  {
    color: #f5db5a;
    font-weight: 600;
    /* text-decoration: none; */
}

@media (min-width: 650px) {
    .interest-header {
        flex-direction: row;
        margin-bottom: 1.25em;
    }

    .interest-header-text h2 {
        font-size: 2rem;
        margin: 0.25em 0;
    }

    .interest-list-headers-container {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
}