.faq-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
}
.faq-card {
    min-height:8rem;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    background-color: #fbfbfb;
    transition: box-shadow 0.2s ease-in-out, background-color 0.2s;
}
.faq-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    background-color: #ffffff;
}
.faq-card:hover .faq-icon-box,.faq-card:hover .faq-title{
	color:#e31837;
	transition:all 0.3s ease;
}
.faq-icon-box {
    color: #7f8082;
    font-size: 1.8rem;
    min-width: 45px;
    display: flex;
    justify-content: center;
    padding-top: 2px;
    transition:all 0.3s ease;
}
@media (max-width:768px){
	.faq-icon-box{
		color:#e31837;
	}
}
.faq-title {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition:all 0.3s ease;
}
.faq-title a {
    color: inherit;
    text-decoration: none;
}
.faq-text {
    color: #444444;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.45;
}