:root {
    --text-color: #111;
    --subtext-color: #666;
    --link-color: #0066cc; /* Approximated blue link color */
    --bg-color: #ffffff;
    --font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --section-gap: 2rem;
    --label-width: 100px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 60px;
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    box-shadow: 0 1px 10px 5px rgba(200, 200, 200, .4);
    padding: 5px
}

h1 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--subtext-color);
    font-size: 16px;
    font-weight: 400;
}

/* Layout for sections */
.content-row {
    display: flex;
    margin-bottom: 20px;
}

.label {
    width: var(--label-width);
    flex-shrink: 0;
    color: #999;
    font-size: 12px;
    padding-top: 4px; /* Align with first line of text */
    font-family: var(--font-family); /* Or mono if preferred */
}

.content {
    flex-grow: 1;
}

.content p {
    margin-bottom: 1.5em;
    font-size: 15px;
    color: #222;
}

.content a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.content a:hover {
    text-decoration: none;
}

/* Specifics */
.signature {
    margin-top: 20px;
    color: #555;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none !important;
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn:hover {
    border-color: #999;
    background-color: #f9f9f9;
}

/* Footer */
footer {
    margin-top: 80px;
}

footer .content p {
    color: #999;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 600px) {
    .content-row {
        flex-direction: column;
    }
    
    .label {
        width: 100%;
        margin-bottom: 8px;
    }

    .container {
        padding-top: 40px;
    }
}
