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


body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f4f7fb;
    color: #222;
}


header {
    background: #0b1f3a;
    color: white;
    text-align: center;
    padding: 60px 20px;
}


header h1 {
    font-size: 45px;
    margin-bottom: 10px;
}


header h2 {
    font-size: 24px;
    font-weight: normal;
}


header p {
    margin-top: 15px;
    font-size: 18px;
}


.buttons {
    margin-top: 25px;
}


.buttons a {
    display: inline-block;
    text-decoration: none;
    background: white;
    color: #0b1f3a;
    padding: 12px 25px;
    margin: 8px;
    border-radius: 5px;
    font-weight: bold;
}


section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
}


section h2 {
    color: #0b1f3a;
    margin-bottom: 20px;
}


ul {
    list-style-position: inside;
}


.project {
    background: #eef3f9;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #0b1f3a;
    border-radius: 5px;
}


.project h3 {
    margin-bottom: 10px;
}


a {
    color: #0b1f3a;
}


footer {
    text-align: center;
    background: #0b1f3a;
    color: white;
    padding: 20px;
    margin-top: 40px;
}
