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

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    z-index: 1000;
}

.header h1 {
    font-size: 24px;
    color: #007BFF;
}

.header button {
    background-color: transparent;
    border: 2px solid #007BFF;
    padding: 10px 20px;
    color: #007BFF;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header button:hover {
    background-color: #007BFF;
    color: white;
}

/* Profile Container */
.profile-container {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

/* Profile Card */
.profile-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
    max-width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Profile Image */
.profile-photo {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid #007BFF;
}

/* Member Details */
.member-details {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.member-details h2 {
    margin-bottom: 10px;
    color: #333;
    font-size: 22px;
    font-weight: bold;
}

.member-details p {
    margin: 8px 0;
}

.member-details p:first-child {
    font-weight: bold;
    font-size: 18px;
    color: #007BFF;
}
