body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('OIP.WEBP');
    background-size: cover;
    background-repeat: no-repeat;
    animation: bg-scroll 30s linear infinite;
}
@keyframes bg-scroll {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}
header {
    background: rgba(76, 209, 209, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #053b73;
    text-decoration: none;
    letter-spacing: 1px;
}
header nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1rem;
}
header nav ul li a {
    color: #053b73;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
header nav ul li a:hover,
header nav ul li a.active {
    background: #053b73;
    color: #fff;
}
main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px 40px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.profile-info {
    width: 60%;
    margin-left: 20px;
}
.profile-info h1 {
    font-size: 2.2rem;
    color: #053b73;
    margin-bottom: 0px;
}
.profile-info h2 {
    font-size: 1.5rem;
    color: #d45e16;
    margin-bottom: 0px;
    margin-top: 0px;
}
.profile-info p {
    font-size: 1.1rem;
    margin-top: 3px;
}
.profile-info button {
    background-color: #059862;
    color: white;
    border: 2px solid #000000;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}
.profile-info button:hover {
    background-color: #86472e;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(76,209,209,0.15);
}
.profile-picture {
    width: 30%;
}
.profile-picture img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    margin-top: 36px;
    border: 2px solid #000000;
}
.social-links {
    display: block;
}
.social-links a {
    margin-right: 10px;
}
.social-links img {
    width: 64px;
    height: 64px;
    filter: grayscale(0.2);
    transition: background 0.2s, color 0.2s;
    border-radius: 100%;
}
.social-links img:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(76,209,209,0.15);
}
.container {
    display: flex;
    align-items: center;
    gap: 20px;
}
footer {
    background: #053b73;
    color: #fff;
    padding: 14px 0;
    text-align: center;
    font-size: 1rem;
    margin-top: 40px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
@media (max-width: 700px) {
    main {
        flex-direction: column;
        flex-direction: column;
        max-width: 98vw;
        margin: 10px auto 0 auto;
        border-radius: 8px;
        padding: 8px 4vw 24px 4vw;
    }
    .container {
        flex-direction: column;
        gap: 12px;
    }
    header nav ul {
        gap: 13px;
    }
}
