body {
    margin: 0;
    margin-left: 8px;
    margin-right: 8px;
    padding: 0;
    padding-top: 90px;

    font-family: oswald;
    background-color: var(--beige);

}


.trustee {
    margin-top: 30px;

}


h1 {
    color: rgb(1, 1, 41);

}

p {
    text-align: justify;
    font-size: 1em;

}

.trust {
    font-size: 3em;
    text-align: center;
    margin-top: 30px;
    font-family: 'Gallery', serif;
    font-weight: bold;
    color: rgb(159, 131, 4);




}

img {
    margin: 10px;

    width: 150px;
    height: 150px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#logo img {
    margin: 0 !important;
    height: auto !important;
    width: 45px !important;
    cursor: default !important;
}

#logo img:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: #bbb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.container1 {

    margin: 70px;
    padding: 10px;
    display: flex;
    border-radius: 12px;

    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);


}

@media (max-width: 900px) {
    .trust {
        font-size: 2.2rem;
    }

    .container1 {
        margin: 1.5rem 0.5rem;
        flex-direction: column;
        text-align: center;
    }

    .container1 img {
        margin: 0 auto 1rem;
    }
}