* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(255, 174, 0);
}

h1, h2 {
    text-align: center;
    color: #000000;
    margin-bottom: 15px;
}

.content {
    flex: 1;
}

.content p, .content ul {
    margin: 15px 0;
    text-align: justify;
}

.content p {
    font-size: 1em;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
}

.content2 {
    flex: 1;
}

.content2 p, .content ul {
    margin: 15px 0;
    text-align: justify;
}

.content2 p {
    font-size: 1em;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
}

.im222 {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(148, 7, 7, 0.548);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.im222 .text-content {
    flex: 1;
    text-align: justify;
}

/* Style for the image */
.profile-image1 {
    width: 150px;
    height: 250px;
    border-radius: 10%;
    object-fit: cover;
}

/* Full-width paragraph style */
.full-width-text {
    padding: 20px;
    text-align: justify;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.full-width-text p {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.profile-image2 {
    width: 100%;
    max-width: 250px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgb(11, 0, 75);
    align-self: center;
}

.imgsrc2 {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.profile-image3 {
    width: 100%;
    max-width: 250px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(81, 4, 88, 0.658);
    align-content: center;
}

.imgsrc3 {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0px 150px;
    background-color: #fff;
    border-radius: 0px;
    box-shadow: 0 0px 0px rgb(255, 255, 255);
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

.footer {
    text-align: center;
    padding: 15px;
    margin-top: auto;
    background: #000000;
    color: #fff;
}

.footer a {
    color: #108bff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: rgb(255, 0, 0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .im222 {
        flex-direction: column;
        text-align: center;
    }

    .profile-image1 {
        width: 200px;
        height: 300px;
        margin-bottom: 15px;
    }

    .im222 .text-content {
        text-align: center;
    }

    .full-width-text {
        padding: 15px;
    }

    .full-width-text p {
        font-size: 14px;
    }

    .profile-image2, .profile-image3 {
        max-width: 150px;
        height: 200px;
    }

    .imgsrc2, .imgsrc3 {
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }

    h1, h2 {
        font-size: 1.5em;
    }

    .content p, .content2 p {
        font-size: 0.9em;
    }
}

@media (max-width: 600px) {
    .image-gallery {
        flex-direction: column;
        align-items: center;
    }
}

.last {
    text-align: center;
}
.last a {
    color: #108bff;
    text-decoration: none;
}

.last a:hover {
    text-decoration: underline;
    color: rgb(255, 0, 0);
}