#faq {
    border-top: 1px #dadada solid;
}

#faq .heading-area {
    margin-bottom: 3rem;
}

#faq .main-color {
    color: #7004bc;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #3264f5;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-left: 2rem;
}

.faq-item h3::before {
    content: "Q";
    position: absolute;
    left: 0;
    color: #7004bc;
    font-weight: 700;
    font-size: 1.4rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-left: 2rem;
    position: relative;
}

.faq-item p::before {
    content: "R";
    position: absolute;
    left: 0;
    color: #03A9F5;
    font-weight: 700;
    font-size: 1.4rem;
}

.para {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .faq-item h3::before {
        font-size: 1.2rem;
    }

    .faq-item p {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }

    .faq-item p::before {
        font-size: 1.2rem;
    }
}