body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    margin: 20px;
    background: linear-gradient(to right, #1a1a1a, #333333);
    color: #d9d9d9;
}

header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to right, #006666, #004d4d);
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

nav {
    margin-top: 10px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    text-decoration: underline;
    color: #66b2b2;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    border-radius: 8px;
    background: linear-gradient(to right, #2d2d2d, #404040);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease-in-out;
}

section:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

h2 {
    color: #66b2b2;
    border-bottom: 2px solid #66b2b2;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    color: #bfbfbf;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 12px;
    color: #d9d9d9;
}

.custom-bullet {
    font-size: 1.5em;
    line-height: 0.1em;
    margin-right: 10px;
    color: #66b2b2;
}

img.profile-image {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    border: 2px solid #66b2b2;
    display: block;
    margin: 0 auto 20px;
    transition: transform 0.3s ease-in-out;
}

img.profile-image:hover {
    transform: scale(1.1);
}

a {
    color: #66b2b2;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

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

footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to right, #006666, #004d4d);
    color: #ffffff;
    border-top: 2px solid #ffffff;
    position: relative;
}

footer:before {
    content: '\00a9';
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #66b2b2;
}
