.profile-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.profile-card {
    width: 55%;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff, var(--background-radial-grad));
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--primary-green);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
input[type="file"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

input[type="file"] {
    padding: 5px;
}

.profile-pic-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.profile-pic-preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #007bff;
}

.btn-save {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    transition: background-color 0.3s;
    background-color: var(--primary-green);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-save:hover {
    background-color: var(--ternary-green);
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
}

.section-title {
    margin-top: 30px;
    font-size: 18px;
    color: #333;
    text-align: center;
    font-weight: bold;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.activity-list li {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.activity-list li:hover {
    background-color: #f1f1f1;
}

.activity-list li a {
    color: #098009;
    text-decoration: none;
    transition: color 0.3s;
}

.activity-list li a:hover {
    color: #033e03;
}

@media (max-width: 1000px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .profile-card {
        width: 80%;
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .profile-pic-preview img {
        width: 120px;
        height: 120px;
    }

    .btn-save {
        padding: 8px;
        font-size: 14px;
    }

    textarea,
    input[type="text"],
    input[type="password"],
    input[type="file"] {
        font-size: 12px;
        padding: 8px;
    }

    .section-title {
        font-size: 16px;
    }

    .activity-list li {
        padding: 8px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .profile-container {
        margin-top: 20px;
    }

    .profile-card {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .profile-pic-preview img {
        width: 100px;
        height: 100px;
    }

    .btn-save {
        padding: 6px;
        font-size: 12px;
    }

    textarea,
    input[type="text"],
    input[type="password"],
    input[type="file"] {
        font-size: 10px;
        padding: 6px;
    }

    .section-title {
        font-size: 14px;
        margin-top: 20px;
    }

    .activity-list li {
        padding: 6px;
        font-size: 10px;
    }
}
