/* Styles for promo block */
.promo-section {
    padding: 40px 0;
    background-color: transparent; /* Remove section background */
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.promo-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #fff; /* Light text for dark background */
}

.promo-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: #ccc; /* Light gray text for dark background */
}

.promo-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.promo-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column; /* Important for pushing code to the bottom */
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.promo-card-inner {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Stretch to full height */
}

.promo-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Stretch content */
}

.promo-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.promo-card-amount {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e63946; /* Red color for amount */
}

.promo-card-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    flex-grow: 1; /* This allows description to stretch and pushes code to the bottom */
}

.promo-card-code-container {
    background-color: #f1f3f5;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Push to the bottom */
}

.promo-card-code-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.promo-card-code {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .promo-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-card {
        width: 100%;
    }
}
