.benefits {
    text-align: center;
    padding: 0px 0;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 26px;
}
.benefit-card p {
    font-size: 17px;
} 


.benefits-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.benefit-card {
    display: flex;
    background: #fff;
    color: #333;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 20px;
    width: 40%;
    max-width: 1100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}
.benefit-card >div{
    width: 50%;
    display: inline-block;
}
.benefit-card img {
    width: 48%;
    border-radius: 10px;
}

.license {
    text-align: center;
    padding: 50px 20px;
}

.license h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.license form {
    display: inline-block;
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.license form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.license form button {
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.license form button:hover {
    background-color: #e45353;
}



@media(max-width: 980px) {

    .license form {
        display: block;
        width: 100%;
        margin: 0 auto;
    }
    
    .license form input {
        width: 90%;
        padding: 10px;
    }


    .benefits-flex {
        display: block;
    }
    .benefit-card {
        border-radius: 10px;
        margin: 20px auto;
        width: 85%;
    }
    .benefit-card >div{
        width: 55%;
    }
    .benefit-card img {
        width: 45%;
    }

    .benefit-card  h3 {
        font-size: 30px;
    }
    .benefit-card  p {
        font-size: 20px;
    }
}



@media(max-width: 700px) {
    .benefit-card {
        width: 75%;
    }

    .benefit-card img {
        width: 25%;
    }
    .benefit-card h3 {
        font-size: calc(1.5vh + 1.5vw);
    }
    .benefit-card p {
        font-size: calc(.9vh + .9vw);
    } 
    
}

@media(max-width: 500px) {

    .benefit-card img {
        width: 38%;
    }
    .benefit-card {
        width: 85%;
    }
    .benefit-card >div{
        width: 65%;
    }
}