/* --- Global Styles for Promo Sections --- */
.promo-section {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #fff;
}
.promo-header h2 {
    font-weight: 700;
    color: #1f3f94; /* Presale.Codes Blue */
    margin-top: 0;
}
.promo-header .sub-heading {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}
.promo-fine-print {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
}

/* --- Responsive Typography Improvements --- */
@media (max-width: 767px) {
    .promo-header h2 {
        font-size: 26px; /* Slightly smaller H2 on mobile for better fit */
        line-height: 1.2;
    }
    .promo-header .sub-heading {
        font-size: 16px;
    }
}

/* --- Version A: Direct & Clean --- */
.promo-v1 .cta {
	background-color: #f9f9f9; 
	padding: 20px; 
	border-radius: 8px;
}

.promo-v1 ul {
    list-style: none;
    padding-left: 0;
}
.promo-v1 ul li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.promo-v1 ul .glyphicon {
    color: #5cb85c; /* Bootstrap Success Green */
    font-size: 20px;
    margin-right: 15px;
}

/* --- Version B: Visual & Bold --- */
.promo-v2 {
    background-color: #f7f9fc;
    border: 2px dashed #1f3f94;
    text-align: center;
}
.promo-v2 .free-badge {
    background-color: #d9534f; /* Bootstrap Danger Red */
    color: white;
    font-size: 24px;
    font-weight: 900;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    transform: rotate(-5deg);
}
.promo-v2 .promo-header h2 {
    font-size: 32px;
}
.promo-v2 .key-benefit {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

/* --- Version C: Testimonial & Trust --- */
.promo-v3 {
    background-color: #f5f5f5;
}
.promo-v3 .panel-trust {
    border-color: #bce8f1; /* Bootstrap Info Blue */
}
.promo-v3 .panel-trust > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    font-weight: bold;
}
.promo-v3 .trust-seals {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
}
.promo-v3 .trust-seals .seal-item {
    font-size: 14px;
    color: #3c763d; /* Bootstrap Success Dark Green */
    font-weight: 500;
}
.promo-v3 .trust-seals .glyphicon {
    margin-right: 8px;
}