.container-cards {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    height: 100%; /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Center content horizontally */
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.container-cards:hover {
    transform: translateY(-5px) rotateY(5deg) rotateX(5deg) translateZ(20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.container-cards img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.container-cards h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.container-cards p {
    font-size: 1rem;
    color: #666;
    flex-grow: 1; /* Allow text to take up available space */
}

.btn-more-information {
    background-color: #FF0000; /* Red color for the button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn-more-information:hover {
    background-color: #CC0000; /* Darker red on hover */
}
