.cuerpo {    
    padding-top: 50px;
    text-align: center;
}
.container-a {
    display: grid;    
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;    
    padding: 20px;
}
.card-a {    
    background-color: white;
    border-radius: 10px;    
    padding: 40px 20px 20px 20px; /* Adding extra padding at the top for the icon */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);   
    position: relative;
}
.icon-a {
    position: absolute;    
    top: -40px; /* Adjust this value as needed */
    left: 50%;    
    transform: translateX(-50%);
    background-color: rgba(173,216,230,0.5);    
    border-radius: 50%;
    padding: 10px;    
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.icon-a img {    
    width: 60px; /* Adjust this value as needed */
    height: 60px; /* Adjust this value as needed */}
.card-a h2 {
    margin-top: 20px; /* Add margin to separate the icon and the title */    
    font-size: 20px;
    color: #333;}
.card-a p {
    font-size: 16px;    
    color: #555;
}



.row-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
.left-1, .right-1 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 10px;
    min-width: 300px;
}
.left-1 img, .right-1 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 300px;
    position: absolute; 
    z-index: 2;   
}
.text-content-1 {
    display: inline;
    padding: 60px;
    justify-content: center;
    text-align: center;
}
.title-1 {
    justify-content: left;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #003366;
}
.text-1 {
    font-size: 1em;
    color: #333;
}