    /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Profile Container */
.profile-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: all 0.3s ease;
}

/* Hover effect for profile container */
.profile-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Profile Header */
.profile-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

/* Profile Image */
.profile-image-container {
    width: 180px;
    height: 180px;
    margin-right: 30px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Profile Name and Title */
.profile-name {
    font-size: 34px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.profile-name:hover {
    color: #007bff;
}

.profile-title {
    font-size: 22px;
    color: #777;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Profile Body */
.profile-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Section Titles */
h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    border-bottom: 3px solid #007bff;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-align: center;
}

/* Section Content */
p, ul {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* Vision Section */
.vision p {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #777;
}

/* Digital Transformation Section */
.digital-transformation {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.digital-transformation p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.digital-transformation h2 {
    font-size: 26px;
    color: #007bff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-container {
        padding: 20px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-image-container {
        margin-bottom: 20px;
    }

    .profile-name {
        font-size: 30px;
    }

    .profile-title {
        font-size: 18px;
    }

    h2 {
        font-size: 20px;
    }

    .profile-body {
        gap: 30px;
    }

    ul li {
        font-size: 14px;
    }
}

/* Hover Effect for Sections */
section:hover {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
