.table{
    width:100%;
    border-collapse:collapse;
    font-size:15px;
    line-height:1.5;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    overflow:hidden;
}

.table th,
.table td{
    padding:14px 16px;
    text-align:left;
    border-bottom:1px solid #f0f0f0;
    vertical-align:top;
}

.table thead th{
    background:#f8f8f8;
    font-weight:600;
    color:#222;
}

.table tbody tr:nth-child(even){
    background:#fcfcfc;
}

.table tbody tr:hover{
    background:#f5f5f5;
    transition:0.2s;
}

.table tbody tr:last-child td{
    border-bottom:none;
}

.table strong{
    font-weight:600;
    color:#111;
}

@media (max-width:768px){
    .table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
        font-size:14px;
    }
}
blockquote{
    margin:25px 0;
    padding:18px 22px;
    background:#fafafa;
    border-left:4px solid #dcdcdc;
    border-radius:8px;
}

blockquote p{
    margin:0;
    font-size:16px;
    line-height:1.7;
    color:#333;
}

blockquote strong{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#111;
}

blockquote em{
    font-style:italic;
    color:#555;
}

@media (max-width:768px){
    blockquote{
        padding:16px;
    }

    blockquote p{
        font-size:15px;
        line-height:1.6;
    }
}