body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1E2A38; /* Deep dark blue variant */
    color: #F7F7F7;
}
.profile-pic {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #F7882F; /* Apricot border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}
/* Header / Navigation */
header {
    background-color: #6B7A8F; /* Blueberry */
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #F7882F; /* Apricot accent */
}

header h1 {
    margin: 0;
    color: #F7882F;
    font-size: 1.8rem;
}

/* Navigation Links */
nav a {
    color: #F7F7F7;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
}

nav a:hover {
    color: #F7882F;
}

/* Main Content */
main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    color: #F7882F;
    font-size: 1.6rem;
}

p {
    line-height: 1.6;
    color: #DCC7AA; /* Apple Core */
}

/* Buttons and Links */
a.button, button {
    background-color: #F7882F;
    color: #1E2A38;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

a.button:hover, button:hover {
    background-color: #F7C331; /* Citrus hover */
}

/* Footer */
footer {
    background-color: #6B7A8F; /* Match nav bar */
    text-align: center;
    padding: 1.5rem;
    color: #F7F7F7;
    font-size: 0.9rem;
    margin-top: 2rem;
    border-top: 2px solid #F7882F; /*Apricot accent like the header */
}

