* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Consolas, 'Courier New', monospace;
    line-height: 1.7;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

.top-banner {
    background: linear-gradient(135deg, #1a3a4a 0%, #2a5a7a 50%, #1a3a4a 100%);
    color: #b8d4e8;
    text-align: center;
    padding: 25px 20px;
    border-bottom: 3px solid #2a5a7a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.top-banner h1 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 2.5em;
    margin: 0;
    font-weight: 600;
    color: #b8d4e8;
    letter-spacing: 2px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 600;
    color: #66c2ff;
    letter-spacing: -0.5px;
}

h2 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 500;
    color: #5ab9ea;
    border-left: 4px solid #2a5a7a;
    padding-left: 12px;
}

section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
}

section:last-of-type {
    border-bottom: none;
}

.intro-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.profile-photo {
    max-width: 300px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    margin-top: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 4px;
}

.intro-text p:last-of-type {
    margin-bottom: 2px;
}

.intro-text ul {
    margin-bottom: 0;
    margin-top: 2px;
}

.intro-text li {
    margin-bottom: 2px;
}

.intro-text li:last-child {
    margin-bottom: 0;
}

p {
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.7;
}

a {
    color: #ffa500;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: #ffb84d;
}

a:visited {
    color: #99e6ff;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    font-size: 1.02em;
    line-height: 1.6;
}

.banner {
    background: linear-gradient(135deg, #1a3a4a 0%, #2a5a7a 50%, #1a3a4a 100%);
    color: #b8d4e8;
    text-align: center;
    padding: 25px 20px;
    margin-top: 0px;
    border-top: 3px solid #2a5a7a;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.banner p {
    font-size: 1.2em;
    font-style: italic;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 600px) {
    .intro-section {
        flex-direction: column;
    }
    
    .profile-photo {
        max-width: 250px;
    }
    
    .banner p {
        font-size: 1em;
    }
}
