body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 50px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #4B0082;
}

header p {
    font-size: 1.2rem;
    color: #4B0082;
}

section {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #9370DB;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #4B0082;
    border-bottom: 2px solid #9370DB;
    padding-bottom: 12px;
    margin-bottom: 25px;
    font-weight: 600;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background: #9370DB;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #9370DB;
    border: 2px solid #4B0082;
}

.timeline-item h3 {
    color: #000000;
    margin-bottom: 5px;
}

.timeline-item .date {
    color: #4B0082;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-item p {
    color: #000000;
    margin: 3px 0;
}

.profile ul li {
    color: #000000;
}

.honors ul li {
    color: #000000;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

a {
    color: #90e0ef;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 15px;
    }
}
