body {
    min-height: 100vh;
    margin: 0 auto;
    background: #f4f6fb;
    color: #333;
    font-family: "Lobster Two", sans-serif;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 15px 0;
}


body > * { /*iska mtlb h body ka koi v direct child*/
    padding: 0 10px;
}

.about-container {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.profile-pic img {
    width: 180px;
    height: 190px;
    border: 5px solid #a2b7b6;
    border-radius: 50%;
    object-fit: cover;
}

.about-text {
    text-align: center;
}

.about-text h1 {
    margin-top: 0;
    color: #333;
}

.about-text h2 {
    margin: 5px 0 15px;
    color: #119089;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    margin: 6px 0;
}

.about-text a {
    color: #3b82f6;
    text-decoration: none;
}

.about-text a:hover {
    text-decoration: underline;
}

/* Footer */

.footer {
    text-align: center;
    padding: 20px;
    margin: 40px auto 100px;
}

.footer-para {
    font-size: 1rem;
    font-weight: 400;
    color: #19485f;
}

.social-media-links-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 10px;
}

.social-media-logo {
    height: 2rem;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-media-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #119089;
}

/* Responsive Design */

@media (max-width: 500px) {
    body {
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 10px;
    }

    .about-container {
        width: 100%;
        padding: 15px;
    }

    .profile-pic img {
        width: 160px;
        height: 170px;
    }

    .about-text h1 {
        font-size: 1.7rem;
    }

    .about-text h2 {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}
