body {
    font-family: Arial, sans-serif;
    position: relative;
}

.section1 {
    padding: 40px;
}

#title{
    font-size: 22px;
}

.card {
    border: 0.5px solid rgba(0, 0, 0, 0.223);
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    height: 100px;
}

.card:hover {
    transform: scale(1.03);
}

.primary-container{
    display: flex;
    justify-content: center;
    margin-bottom: 3%;
    font-weight: bold;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    width: 330px;
}

.card-description {
    padding-top: 2%;
}

.modal-content {
    border-radius: 12px;
    padding: 20px;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
}

.modal-body {
    font-size: 16px;
    color: #555;
}



@media only screen and (max-width: 768px) {
    .card-title {
        font-size: 16px;
    }

    .modal-content {
        padding: 15px;
    }

    .modal-title {
        font-size: 18px;
    }

    .section1 {
        padding: 0px;
    }
    
    #title{
        font-size: 18px;
        padding: 16px;
    }
}