.story-section {
    background: #fff;
}

/* Rating */
.rating {
    color: #2a7f73;
    font-size: 25px;
    letter-spacing: 2px;
}

/* Title */
.story-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
}

/* Paragraphs */
.story-section p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

/* Mum Comment Box */
.mum-comment {
    background: #eef7f4;
    padding: 35px;
}

/* Avatar */
.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.avatar {
    width: 200px;
    height: 200px;
    background: #e6e2a8;
    border-radius: 50%;
    padding: 20px;
}

/* Quote icon */
.quote-icon {
    position: absolute;
    left: -20px;
    top: 35px;
    font-size: 160px;
    color: #2a7f73;
    font-weight: 700;
}

.qa-question {
    color: #2a7f73;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.qa-answer {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .story-title {
        font-size: 26px;
    }

    .mum-comment {
        text-align: center;
    }

    .quote-icon {
        position: static;
        display: block;
        margin-bottom: 10px;
    }
     .qa-question {
        font-size: 15px;
    }

    .qa-answer {
        font-size: 14px;
    }
}



