/* --- 全体共通のスタイル --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    color: #333;
    line-height: 1.6;
}

/* --- コンテンツ共通のコンテナ設定 --- */
.content-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

/* --- 後押しコンテンツのスタイル --- */
.product-support-content {
    background-color: #f8f8f8;
    padding: 25px 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin: 20px auto;
}

.product-support-content h3 {
    font-size: 1.4em;
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.product-support-content p {
    font-size: 1em;
    margin-bottom: 15px;
}

.product-support-content .intro-text {
    font-weight: bold;
}

.recommended-users {
    background-color: #f1f7ff; /* 別の背景色で強調 */
    border: 1px solid #b3d4fc; /* 薄い青色の枠線 */
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0; /* 本文との余白 */
}

.recommended-users h4 {
    font-size: 1.1em;
    color: #004d99; /* 枠の色に合わせた文字色 */
    margin-bottom: 15px;
}

.recommended-users ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommended-users li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.recommended-users .emoji {
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.recommended-users li:last-child {
    margin-bottom: 0;
}