body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: url('bg1.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(0, 0, 0, 0.70);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 80px rgba(0, 255, 204, 0.3);
    max-width: 700px;
    width: 90%;
    box-sizing: border-box;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-section {
    margin-bottom: 30px;
    text-align: center;
}

.profile-pic {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 1px solid #33ccff;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.6);
    margin-bottom: 20px;
}

h2 {
    font-size: 2.8em;
    margin: 15px 0 10px;
    color: #e0e0e0;
    text-shadow: 0 0 3px #33ccff, 0 0 30px #00ffff;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.description {
    font-style: italic;
    color: #e0e0e0;
    margin: 8px 0;
    font-size: 1.1em;
    line-height: 1.5;
}

.container > p.description {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: bold;
    color: #e0e0e0;
    text-shadow: 0 0 8px #33ccff;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    width: 100%;
}

.contact-section p {
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    max-width: 250px;
    flex-grow: 1;
    text-align: center;
}

.contact-section p:hover {
    transform: translateY(-8px);
    background: rgba(0, 255, 204, 0.15);
}

.contact-section a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 10px;
}

.contact-section a:hover {
    text-decoration: underline;
    color: #66ffff;
}

.contact-section .fas,
.contact-section .fab {
    font-size: 1.8em;
    color: #cce6ff;
    margin-top: 45px;
    margin-bottom: 0px;
}

.contact-section img {
    display: block;
    margin: 15px auto 0 auto;
    width: 130px;
    height: 130px;
    border: 0px solid #33ccff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
        width: 95%;
    }

    h2 {
        font-size: 2.2em;
    }

    .description {
        font-size: 1em;
    }

    .profile-pic {
        width: 150px;
        height: 150px;
    }

    .contact-section {
        flex-direction: column;
        gap: 20px;
    }

    .contact-section p {
        width: 100%;
        max-width: unset;
    }

    .contact-section img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8em;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }
}