/* CSS Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Soft-grey background setting */
    background-color: #FAFAFA;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Card Container */
.card {
    /* White background */
    background-color: #FFFFFF;
    border-radius: 36px;
    padding: 56px 40px;
    text-align: center;
    /* Soft Drop Shadow */
    box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.04), 0px 4px 16px rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 580px;
    margin: 20px;
}

/* Image Container */
.image-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 32px auto;
    padding: 6px;
    background-color: #F8F8F8;
    border: 1px solid #EAEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f1f1f1;
    /* fallback base */
}

/* Typography styles */
.heading {
    font-size: 26px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: #7A7A7A;
}

.description strong {
    color: #1A1A1A;
    font-weight: 600;
}