/************************************************************/
/*  DEDICATED STYLES FOR THE SALES PAGE                     */
/************************************************************/

/* We use the same page-wrapper for consistent spacing */
.page-wrapper {
    padding: 80px 20px;
}

.sales-container {
    max-width: 700px;
    /* This is the key to centering the box */
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 50px 50px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-top: 5px solid #A63D40; /* Red top border */
    /* This centers all the text content inside the box */
    text-align: center;
}

/* This is a specific fix for the subtitle paragraph */
.sales-container .sales-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    /* This allows us to have left-aligned text inside a centered block */
    display: inline-block;
    text-align: left;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features-list .checkmark {
    color: #A63D40; /* Red checkmark */
    font-size: 1.3rem;
    margin-right: 15px;
    font-weight: 700;
}

.price-box {
    background-color: #FDFCF7; /* Creamy background */
    border: 2px solid #E9B872; /* Gold border */
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #A63D40; /* Red price */
    line-height: 1;
}

.price-term {
    font-size: 1.1rem;
    color: #666;
    margin-left: 5px;
}

.price-clarifier {
    font-style: italic;
    color: #555;
    margin-top: 10px;
    font-size: 1rem;
}

.paypal-button-container {
    margin-top: 30px;
}

.secure-payment-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}
/* --- STYLING FOR THE TERMS AGREEMENT TEXT --- */
.terms-agreement {
    font-size: 0.9rem;
    color: #555;
    margin: 25px auto 15px auto;
    max-width: 450px;
    line-height: 1.5;
}
.terms-agreement a {
    color: #A63D40; /* Your brand's red */
    font-weight: bold;
    text-decoration: none;
}
.terms-agreement a:hover {
    text-decoration: underline;
}