body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    text-align: center;
}

.hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.vcard-section {
    padding: 0 20px 40px;
    background-color: #000;
    position: relative;
}

.profile-photo {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 3px solid #fff;
    margin-top: -225px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5em;
    margin-top: 40px;
}

p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 20px auto;
}

.vcard-download {
    display: inline-block;
    padding: 24px 50px;
    margin-top: 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1.8em;
}

.vcard-download:hover {
    background-color: #ddd;
    color: #000;
}

/* Links Section */
.links-section {
    padding: 40px 20px;
}

.links-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.link-button {
    display: block;
    width: 80%;
    max-width: 400px;
    padding: 15px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #555;
}