/* Profile Section */
.profile-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.profile-section .profile-img {
    text-align: center;
    margin-bottom: 30px;
}

.profile-section .profile-img img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #1995ad;
}

.profile-section .profile-details {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    color: #333;
}

.profile-section .profile-details h2 {
    font-size: 2rem;
    color: #1995ad;
    margin-bottom: 15px;
    font-weight: 600;
}

.profile-section .profile-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.profile-section .profile-details h3 {
    font-size: 1.5rem;
    color: #1995ad;
    margin-top: 30px;
    margin-bottom: 15px;
}

.profile-section .profile-details ul {
    list-style: none;
    padding: 0;
}

.profile-section .profile-details ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.profile-section .profile-details ul li::before {
    content: "•";
    color: #1995ad;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .profile-section .row {
        flex-direction: column;
        align-items: center;
    }

    .profile-section .profile-img img {
        width: 120px;
        height: 120px;
    }

    .profile-section .profile-details {
        padding: 20px;
        width: 100%;
    }
}
