.product-card {
    width: 90%; 
    margin: 0 auto 2rem auto;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.product-card-body {
    padding: 1.25rem;
    padding-top: 0px;
}

h2.product-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff !important;
    padding: 15px;
    padding-left: 1.25rem;
}

.product-title-bg {
    background-color: #FF4D37;
    border-radius: 12px 12px 0px 0px;
    width: 100%;
    margin-bottom: 1rem;
}

.grid-hero {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: .5rem; 
}

.left-column {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-column {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

img.logo-hero {
    max-width: 250px; 
}

.learn-more-btn {
    display: inline-block;
    background-color: #00BE73; 
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 250px;
    text-align: center;
}

.btn-wrapper {
    text-align: center;
}

.secure-site-wrapper {
	max-width: 250px;
}

.secure-site {
    display: block;
    margin-bottom: 20px;
	justify-self: center;
}

.feature {
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    margin-bottom: .25rem;
}

.feature small {
    font-size: .8rem;
    color: gray;
}

.product-logo img {
    height: auto;
    width: 250px;
}

.feature {
    grid-column: 2;
    padding: 0px;
    margin-bottom: 16px; 
}

.feature span {
    font-size: 0.9em; 
}

.feature p {
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: 6px;
}

@media (max-width: 600px) {
.product-card {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.product-title-bg {
    background-color: #FF4D37;
    border-radius: 12px 12px 0px 0px;
    width: 100%;
    height: auto;
    text-align: center;
}

.product-title {
        font-weight: bold;
        padding: 1rem;
    }

.product-brand {
    justify-content: center;
    font-size: 1rem;
}

.product-brand h3 {
    margin-right: 2rem;
}

.grid-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
}

.secure-site {
    display: block;
    margin-bottom: 20px;
    margin-left: 0px;
    font-size: 1rem;
}

.left-column {
    align-items: center;
    grid-column: 1;
    display: flex;
    flex-direction: column;
}

.left-column img {
    height: auto;
}

.learn-more-btn {
    border-radius: .25rem;
    margin-bottom: .5rem;
    font-size: 1.25rem;
}

.right-column {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
}