.fin-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 24px;
}

.fin-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.fin-second-row {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 24px;
}

.fin-button {
    padding: 18px 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 4px;
    background-color: #4778ff;
    text-decoration: none;
    width: fit-content;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
}

.fin-button svg {
    height: 24px;
    width: 24px;
}

.fin-button:hover {
    background-color: #113599;
    color: white;
    text-decoration: none;    
}

.fin-spacing {
    width: 100%;
    content: "";
    height: 64px;
    background: transparent;
}

.fin-line {
    width: 100%;
    box-sizing: border-box;
    margin: 4px 0;
    height: 2px;
    border-radius: 24px;
    background-color: #d1d5dc;
}

.fin-card {
    height: auto;
    flex: 1;
    border-radius: 8px;
    border: solid 1px #d1d5dc;
    box-shadow: 0px 5px 12px -10px #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    box-sizing: border-box;
    padding: 16px 8px;
    min-width: 280px;
}

.fin-text-green {
    color: #4fa33c;
    margin: 4px 0;
}

.fin-img {
    width: auto;
    height: auto;
    object-fit: contain;
    max-width: min(85%, 300px);
    align-self: center;
    margin: 24px 0;
}

.fin-wrapper p { 
    font-size: 18px;
}

.fin-wrapper p span { 
    font-weight: 700;
}

.fin-wrapper h2 {
    color: #4fa33c;
    font-size: 28px;
}

.fin-wrapper h3 {
    color: #4fa33c;
}