/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background: #1F3A93;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7D3C98;
}
.header nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
.header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Home Section */
.home {
    background: #F2F2F2;
    color: #1F3A93;
    text-align: center;
    padding: 5rem 1rem;
}
.home h1 {
    font-size: 2.5rem;
}
.home p {
    margin: 1rem 0;
}
.home .button {
    background: #7D3C98;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}

/* About Section */
.about {
    padding: 3rem 1rem;
    background: #fff;
    color: #333;
    text-align: center;
}
.about h2 {
    color: #1F3A93;
}
.about .skills {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.about .skill {
    max-width: 300px;
    background: #F2F2F2;
    padding: 1rem;
    border-radius: 5px;
}

/* Resume Section */
.resume {
    padding: 3rem 1rem;
    background: #F9F9F9;
    text-align: center;
}
.resume h2 {
    color: #1F3A93;
}
.timeline {
    margin-top: 2rem;
    text-align: left;
    display: inline-block;
}
.timeline-item {
    margin-bottom: 1.5rem;
}
.resume .button {
    margin-top: 2rem;
    background: #7D3C98;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: #1F3A93;
    color: #fff;
    text-align: center;
    padding: 1rem;
}
.footer a {
    color: #7D3C98;
    text-decoration: none;
    font-weight: bold;
}
