body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
}

.logo {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
}



.card {
    transition: transform 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;

}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}

.option-image {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
}

.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.footer strong {
    display: block;
    margin: 10px 0;
    font-size: 1em;
    color: #474747;
    font-family: 'Open Sans', sans-serif;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.footer ul li a {
    font-size: 0.8em;
    color: #474747;
    text-decoration: none;
}

.footer ul li a:hover,
.footer ul li a:focus {
    color: #74b944;
    text-decoration: none;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .row.justify-content-center {
        margin-top: 20px;
    }

    .card {
        margin-bottom: 50px;
        padding: 10px;
    }

    .logo {
        max-width: 200%;
    }

    .card-title {
        font-size: 1.25em;
    }

    .card-text {
        font-size: 0.9em;
    }

    .footer {
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-top: 20px;
    }
}