body {
    background-color: #0B1929;
    color: #fff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 460px;
    padding: 20px;
    box-sizing: border-box;
}

.profile-card {
/*    background-color: #132F4C;*/
/*    border-radius: 10px;*/
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-info {
    text-align: center;
    margin-bottom: 20px;
}

.name {
    font-size: 2.5em;
    margin: 0;
}

.location {
    font-size: 1.2em;
    margin: 10px 0;
    color: #aaa;
}

.location i {
    margin-right: 5px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    background-color: #223F64;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-button:hover {
    background-color: #335A8A;
}

.social-button i {
    margin-right: 8px;
}

