body{
    background-color: antiquewhite;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;   
    align-items: center;       
     min-height: 100vh;         
    margin: 0;
    background: #f5f5f5;
}

.card{
   display: flex;
    flex-direction: row;       
    align-items: flex-start;   
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 900px; 
}

.card-footer img{
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    object-fit: cover;
    display: block;
    margin-right: 14px;
}


.card-content h2{
    margin: 0 0 10px; 
    font-size: 1.5rem;
    color: #1d3557;   
}

.card p{
    color: darkgray;
}

.card-image img{
    width: 350px;
    border-radius: 16px;
}

.card-content p{
    margin: 0 0 15px;
    color: #555;
    line-height: 1.5;
}

.card-content{
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-footer{
    display: flex;
    gap: 10px;
}

.footer-info { 
    margin-top: auto;
}

.footer-info h4{
    margin-top: 0;
    margin-bottom: 0;
    color: #1d3557; 
}

.footer-info p{
    margin-top: 5px;
}
