:root {
    --background-color: #f8f9fa;
    --text-color: #343a40;
    --card-background: #fff;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --primary-color: #545454;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.card {
    background-color: var(--card-background);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--card-shadow);
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
}

.header h1 {
    margin: 0;
    font-size: 2rem;
}

.header p {
    margin: 0;
    color: #6c757d;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-list li i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-list a {
    text-decoration: none;
    color: var(--text-color);
}

.contact-list a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
}

h4 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

ul {
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 10px;
}

.copied-message {
    display: none;
    color: rgb(24, 24, 24);
    font-size: 0.9rem;
    margin-left: 10px;
}

.justify-text {
    text-align: justify;
}