body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f6f4fb;
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    background: #fff;
    margin: 40px auto 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(129, 90, 185, 0.16);
    padding: 30px 40px 40px 40px;
}
header {
    display: flex;
    align-items: center;
    border-bottom: 3px solid #a259ff;
    padding-bottom: 24px;
    margin-bottom: 32px;
}
.headshot {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #a259ff;
    margin-right: 32px;
    box-shadow: 0 0 12px rgba(162, 89, 255, 0.12);
}
.header-text h1 {
    margin: 0 0 4px 0;
    font-size: 2.2rem;
    color: #6034bc;
}
.header-text h2 {
    margin: 0 0 10px 0;
    color: #a259ff;
    font-weight: 400;
    font-size: 1.2rem;
}
.header-text a {
    color: #a259ff;
    text-decoration: none;
    font-weight: 500;
}
.header-text a:hover {
    text-decoration: underline;
}
section {
    margin-bottom: 32px;
}
section h3 {
    color: #6034bc;
    margin-bottom: 8px;
}
ul.experience-list, ul.skills-list, ul.cert-list {
    padding-left: 20px;
    margin-top: 0;
}
ul.skills-list li, ul.cert-list li {
    margin-bottom: 5px;
    display: inline-block;
    background: #e5ddfa;
    color: #222;
    border-radius: 16px;
    padding: 6px 18px;
    margin: 3px 7px 3px 0;
    font-size: 1.04em;
    font-weight: 500;
}
ul.experience-list li {
    margin-bottom: 6px;
}

.contact-form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f6f4fb;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(129, 90, 185, 0.12);
}
.contact-form input,
.contact-form textarea {
    padding: 8px 10px;
    border: 1.5px solid #a259ff;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    outline: none;
    background: #fff;
}
.contact-form button {
    background: linear-gradient(90deg, #a259ff 60%, #6034bc 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.05em;
    box-shadow: 0 2px 6px #a259ff22;
}
.contact-form button:hover {
    background: linear-gradient(90deg, #6034bc 60%, #a259ff 100%);
}
@media (max-width: 700px) {
    .container {
        padding: 12px 4px 24px 4px;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .headshot {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
