/* style/promotions.css */
.page-promotions {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1A237E; /* Main text color */
    background-color: #f8f8f8; /* Light background for general sections */
}

.page-promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions-hero {
    background: linear-gradient(135deg, #1A237E 0%, #3A478F 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}