html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #b3e5fc, #81d4fa);
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}
.profile-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 480px;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: calc(100vh - 2rem);
}
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
h1 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}
.title {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.office {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.social-icons a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #007bff;
}
.icon-padding{
    padding-right: 4px;
}
.contact-info {
    color: #666;
}
.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}
.contact-info i {
    margin-right: 0.75rem;
    color: #333;
    width: 20px;
    text-align: center;
}
.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info a:hover {
    color: #007bff;
}
.links {
    text-underline-offset: 0.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-text-decoration-color: rgba(51, 51, 51, 0.25);
    text-decoration-color: rgba(51, 51, 51, 0.25);
    color: rgb(47, 133, 226);
}
.save-contact {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.save-contact:hover {
    background-color: #0056b3;
}
@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    .profile-card {
        padding: 1rem;
        max-width: calc(100% - 1rem);
        max-height: calc(100vh - 1rem);
    }
    .profile-image {
        width: 120px;
        height: 120px;
    }
    h1 {
        font-size: 1.3rem;
    }
    .title {
        font-size: 1.1rem;
    }
    .office {
        font-size: 0.9rem;
    }
}