
:root {
    --primary-color: #0A2342; /* Deep navy */
    --accent-color: #D4AF37;  /* Gold */
    --light-bg: #f5f7fa;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background: var(--primary-color);
    color:white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-top: 1rem;
    z-index: 1;
    position: relative;
}

.tagline {
    font-style: italic;
    color: #ccc;
    margin-top: 0.5rem;
}

blockquote {
    margin-top: 1rem;
    font-style: italic;
    color: #eee;
}

section {
    max-width: 900px;
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.25rem;
    margin-bottom: 1rem;
}

ul {
    list-style-type: square;
    padding-left: 1.5rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
