.forum {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;

    .forum h2 {
        margin-bottom: 30px;
        color: #333;
    }

    .review {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin-bottom: 20px;
        text-align: left;
    }

    .review-author {
        color: #666;
        font-size: 0.9em;
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
    }

    .review-content {
        color: #333;
        line-height: 1.6;
    }

    .forum a {
        display: inline-block;
        margin-top: 20px;
        text-decoration: none;
        color: #0066cc;
    }

    .forum a:hover {
        text-decoration: underline;
    }

    a {
        color: #000;
        transition: color 0.15s ease-in-out;
        margin-right: 1rem;
    }

    a:hover {
        color: #666;
    }
}
