body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, 
        #0087bd 0%, 
        #5494ad 70%, 
        #ffffff 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  
    align-items: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 90%;
    margin-top: 20px; /* Add some top margin */
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid white;
    box-shadow: 0 0 0 5px #f0f0f0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    margin-bottom: 20px;
}

.contact-button button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px; 
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.1);
}

.icon-label {
    margin-top: 5px;
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px; /* Space below the link */
    color: #ffffff; /* Text color */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Font size */
}

.back-link:hover {
    text-decoration: underline; /* Underline on hover */
}

@media screen and (max-width: 768px) {
    body {
        justify-content: flex-start;
        padding-top: 20px; 
    }

    .container {
        margin-top: 0; 
        border-radius: 0; 
    }
}