/* <--- Loyalty Program Page ---> */
.loyalty-program {
    padding: 60px 20px;
    background-color: #f5f0e8;
    color: #3e2723;
    margin-top: 120px;
}
.loyalty-program-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
}

.loyalty-program-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.loyalty-program-header p {
    font-size: 18px;
    margin-bottom: 20px;
}

.loyalty-program-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1s ease-out;
}

.loyalty-program-card {
    background-color: #d4a373;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.loyalty-program-card:hover {
    transform: scale(1.02);
}

.loyalty-program-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.loyalty-program-card p {
    font-size: 16px;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    animation: fadeIn 1s ease-out;
    margin: auto;
    margin-top: 30px;
}

.contact-info p {
    font-size: 18px;
}
