* {
    box-sizing: border-box;
}

/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
} */

header {
    background-color: #c32143;
    color: white;
    text-align: center;
    padding: 2rem;
}

main {
    padding: 2rem;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.benefit-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 1rem;
    flex: 1 1 calc(25% - 2rem);
    text-align: center;
}

.benefit-card h3 {
    color: #c32143;
}

.purchase {
    text-align: center;
}

.modalButton {
    background-color: #c32143;
    color: white;
    border: none;
    padding: .5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.modalButton:hover {
    background-color: #c32143;
} 

footer {
    text-align: center;
    padding: 1rem;
    background-color: #c32143;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
