.promotions-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.promotions-container h1 {
    text-align: center;
    color: #d48aac;
    font-size: 36px;
    margin-bottom: 40px;
}

.promotion {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.promotion img {
    border-radius: 10px;
    width: 400px;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.promotion-content {
    flex: 1;
}

.promotion h2 {
    font-size: 24px;
    margin: 0 0 15px 0;
}

.promotion p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.promo-code {
    background: #f8c8dc;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.promotion-button {
    display: inline-block;
    background: #f8c8dc;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #f8c8dc;
}

.promotion-button:hover {
    background: #e5a8c2;
    border-color: #e5a8c2;
}

@media (max-width: 900px) {
    .promotion {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .promotion img {
        width: 100%;
        max-width: 400px;
        height: 200px;
    }
}