/* General Styles */
body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #fdf6e3;
    color: #3b3b3b;
}

header {
    background: #333;
    color: #fdf6e3;
    padding: 30px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 5px solid #e94e77;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.photo img {
    border-radius: 10%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e94e77;
}

header h1 {
    margin: 5px 0 10px;
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 1px;
}

header p {
    font-size: 1rem;
    margin: 0;
    font-style: italic;
    color: #fdf6e3;
}

section {
    max-width: 900px;
    margin: 20px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
    border-bottom: 3px solid #e94e77;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #333;
}

ul {
    list-style: square inside;
    padding: 0;
    margin: 0;
}

ul li {
    margin-bottom: 12px;
    line-height: 1.5;
}

ul li strong {
    font-weight: bold;
    color: #333;
}

ul li em {
    font-style: italic;
    color: #555;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: #333;
    color: #fdf6e3;
    font-size: 0.9rem;
    border-top: 5px solid #e94e77;
    border-radius: 0 0 10px 10px;
}
