.cpa-photo-album {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.cpa-photo-item {
    width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cpa-photo-item img {
    width: 100%;
    height: 200px; /* 3:2 ratio for 300px width */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cpa-photo-item:hover img {
    transform: scale(1.1);
}

.cpa-photo-item h3 {
    margin: 10px 0 0;
    font-size: 16px;
    text-align: center;
    color: #333;
}