body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    background-color: #f5f7fa;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.profile-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 520px; 
    padding: 35px;
    box-sizing: border-box;
    text-align: center;
}

h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px; 
    margin-top: 10px;
}

th {
    width: 25%; 
    text-align: left;
    font-weight: 600;
    color: #8e8e93;
    font-size: 14px;
    padding: 8px 0;
    vertical-align: middle;
}

td {
    width: 45%; 
    text-align: left;
    font-weight: 500;
    color: #2c2c2e;
    font-size: 16px;
    padding: 8px 0;
    vertical-align: middle;
}

.p_img {
    width: 30% !important; 
    text-align: center;
    vertical-align: middle;
    padding-left: 15px;
}

.p_img img {
    width: 110px;
    height: 110px;
    border-radius: 50%; 
    border: 3px solid #b4ddb3; 
    background-color: #e5e5ea;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.quote-text {
    font-style: italic;
    font-family: 'Georgia', serif;
    color: #c681e0;
    font-weight: bold;
}


.back-button-container {
    text-align: center;
    margin-top: 30px;
}

.back-button-container button {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: #c681e0;
    border: none;
    border-radius: 20px; 
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(198, 129, 224, 0.3);
    transition: all 0.2s ease;
}

.back-button-container button:hover {
    background-color: #b56fd1; 
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(198, 129, 224, 0.4);
}

.back-button-container button:active {
    transform: translateY(1px);
}