@import url('./global.css');

main {
    width: 100vw;
    min-height: calc(100vh - 125px);
    margin-top: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    background-color: #eefaeb;
    text-align: center;
}

.process {
    max-width: 900px;
    width: 100%;
}

.process h1 {
    margin-top: 30px;
}

.process span {
    color: #438d34;
}

.cards {
    margin-top: 50px;
    display: grid;
    gap: 20px;
}

.card {
    background-color: #cff1c8;
    padding: 25px;
    border-radius: 6px;
    border-radius: 7px;
}

.card.alternative {
    background-color: #f3f3f3;
    border: 1px solid #ccc;
}

.card span {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
    color: #363636;
}

.cta {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    background-color: #438d34;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 40px;
}

.cta:hover {
    background-color: #347926;
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}
