
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #001f3f;
}
header {
    background-color: #001f3f;
    color: white;
    text-align: center;
    padding: 30px 20px;
}
.logo {
    width: 100px;
    margin-bottom: 10px;
}
.projects, .global-projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
}
.project {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    color: #001f3f;
}
.project img {
    width: 90%;
    height: auto;
    margin-top: 10px;
    border-radius: 10px;
}
.crypto {
    text-align: left;
    background: #e6f0fa;
    padding: 40px 20px;
    color: #001f3f;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
a {
    color: #00bfff;
    text-decoration: none;
}
