body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.profile-box,
.section-box {
    background-color: #ffffff;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.profile-box {
    text-align: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto 20px auto;
}

h1 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

h2 {
    font-size: 2em;
    color: #34495e;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    text-align: center;
}

p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

p.profession {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
}

ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 0;
    text-align: left;
}

ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

span {
    font-weight: 600;
    color: #367fd2;
}

a {
    color: #5093e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #227ad1;
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .profile-box,
    .section-box {
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.7em;
    }

    p {
        font-size: 1em;
    }

    p.tagline {
        font-size: 1.1em;
    }

    ul {
        padding-left: 20px;
    }
}