* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
}

#page-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-radius: 8px;
}

nav {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #3498db;
}

nav a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

nav a:hover {
    color: #2980b9;
}

#contact-info {
    text-align: center;
    margin-bottom: 40px;
}

h1.fn {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

#contact-info table {
    margin: 20px auto;
}

#contact-info img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

#contact-info img:hover {
    opacity: 1;
    transform: scale(1.1);
}

#pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3498db;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

#objective {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #555;
}

dl {
    margin-top: 20px;
}

dt {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
}

dd {
    margin-left: 0;
    margin-bottom: 30px;
}

dd h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

dd h2 span {
    float: right;
    font-size: 14px;
    font-weight: 400;
    color: #7f8c8d;
}

dd p {
    margin-bottom: 10px;
    color: #555;
}

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

dd ul li {
    margin-bottom: 20px;
    padding-left: 0;
}

dd ul li b {
    font-weight: 600;
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #2980b9;
}

.clear {
    clear: both;
}

@media print {
    body {
        font-size: 12pt;
        background: #fff;
    }
    
    #page-wrap {
        box-shadow: none;
    }
    
    nav {
        display: none;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
}
