* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f1f5f9;
    padding: 15px;
}

/* Main Card */
.container {
    max-width: 900px;
    margin: auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin: 30px auto;
}

/* Header Section */
.header {
    background: #e91e63;
    color: white;
    padding: 40px 40px;
    position: relative;
}

.header h1 {
    font-size: 30px;
    font-weight: 700;
}

.header p {
    margin-top: 12px;
    font-weight: 300;
    opacity: 0.9;
    font-size: 17px;
}

/* Avatar */
.avatar {
    position: absolute;
    right: 40px;
    bottom: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid white;
    background: url("https://avatars.githubusercontent.com/u/9919?s=200") center/cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Body Content */
.content {
    padding: 40px 40px 40px 40px;
    line-height: 1.75;
    color: #374151;
}

.topText {
    font-size: 16px;
}

.bottomText {
    font-size: 15px;
}

/* Highlighted Section */
.highlight {
    margin-top: 15px;
    color: #e91e63;
    font-weight: 600;
}

.remainder {
    padding: 20px 10px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Footer */
.footer {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.social-links a {
    color: #e65887;
    text-decoration: none;
    font-weight: 500;
    padding: 3px;
}

.social-links a:hover {
    color: #7c58e6;
}

/* ---------------------- RESPONSIVE ---------------------- */

@media(max-width:768px) {
    .header {
        padding: 50px 25px;
    }

    .header h1 {
        font-size: 30px;
    }

    .header p {
        font-size: 15px;
    }

    .avatar {
        width: 70px;
        height: 70px;
        right: 25px;
        bottom: -35px;
    }

    .content {
        padding: 65px 25px 35px 25px;
        font-size: 16px;
    }
}

@media(max-width:500px) {
    .header {
        padding: 45px 20px;
    }

    .header h1 {
        font-size: 26px;
    }

    .avatar {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: -30px;
    }

    .content {
        padding: 60px 20px 30px 20px;
        font-size: 15px;
        line-height: 1.7;
    }
}