.container {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.header {
    background: #4caf50;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.header h1 {
    margin: 0;
}
.content {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.patron-image {
    flex: 1 1 250px;
    max-width: 250px;
    text-align: center;
}
.patron-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 4px solid #4caf50;
}
.message {
    flex: 2 1 300px;
    text-align: center;
}
.message h4 {
    margin: 0 0 15px;
    color: #4caf50;
    text-align: left;
}
.message p {
    margin: 0 0 20px;
    font-size: 1.1rem;
    text-align: justify;
}
.footer {
    background: #f4f4f9;
    display: flex;
    flex-direction: column; /* Default for mobile view */
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-top: 1px solid #ddd;
}
.footer .patron-image {
    flex: 0 0 120px; /* Set image container size */
    max-width: 120px;
    margin-bottom: 15px; /* Space below image for mobile view */
}
.footer .patron-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 4px solid #4caf50; /* Green border for emphasis */
}
.footer .message {
    flex: 1; /* Take remaining space */
    text-align: center; /* Center-align text for mobile view */
}
.footer .message p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}
.footer .message strong {
    color: #333;
}

/* Desktop View Adjustments */
@media (min-width: 768px) {
    .footer {
        flex-direction: row; /* Side-by-side layout */
        align-items: center;
        justify-content: space-between; /* Space out content */
    }
    .footer .message {
        text-align: left; /* Align text to the left for desktop */
    }
    .footer .patron-image {
        margin-bottom: 0; /* Remove extra margin for desktop */
    }
}