.cute-footer {
    /*background-color: #fce4ec; /* Light Pink */
    background-color: #2c3e50; /* Darker professional blue/grey */
    /*color: #880e4f; /* Dark Pink/Wine */
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    border-top: 1px solid #2b2828;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}
.heart {
    color: #e91e63;
    animation: pulse 1.5s infinite;
    display: inline-block;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}