body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
}

.profiles-container {
    padding-top: 100px; /* เพิ่มพื้นที่ด้านบนให้เนื้อหาทั้งหมดเลื่อนลงมา */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto; /* จัดวางเนื้อหาให้อยู่ตรงกลาง */
}

.profile-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 250px;
    text-align: center;
    padding: 20px;
}

.profile-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

.profile-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.profile-card p {
    font-size: 0.9em;
    color: #777;
}
