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

/* White background for content sections */
.product-display, 
.goal-section, 
.includes-section, 
.upsell-section, 
.total-section {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-display {
    border: 1px solid #e0e0e0;
}

.medication-type-switcher {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.medication-type-switcher button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.medication-type-switcher button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.treatment-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.approval-timer {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.logo img {
    height: 40px;
}

/* Goal section styling */
.goal-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.goal-highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.includes-section p {
    margin-bottom: 15px;
    font-weight: bold;
}

.includes-section ul {
    list-style: none;
}

.includes-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.check-icon:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    top: 4px;
    left: 7px;
    transform: rotate(45deg);
}

/* Total section styling */
.total-section {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

/* Total section styling */
.total-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.total-price {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.original-total {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
}

.current-total {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
}

.savings-message {
    background-color: #e8f5e9;
    color: #4CAF50;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

/* Reduce space between GLP-1 support and payment section */
.payment-section {
    margin-top: 10px;
}

.payment-section h2 {
    margin-top: 0;
}

/* Make disclaimer text smaller on mobile */
@media (max-width: 768px) {
    .payment-section p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .product-display, 
    .goal-section, 
    .includes-section, 
    .upsell-section, 
    .total-section {
        padding: 15px;
    }
    
    .total-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .total-price {
        margin-bottom: 15px;
    }
    
    .original-total {
        font-size: 16px;
    }
    
    .current-total {
        font-size: 26px;
    }
    
    header {
        flex-direction: column;
        gap: 15px;
    }
    
    .treatment-title {
        font-size: 24px;
    }
    
    /* Further reduce space on mobile */
    .payment-section {
        margin-top: 5px;
    }
    
    .payment-section h2 {
        margin-bottom: 10px;
    }
    
    .savings-message {
        padding: 10px;
        font-size: 14px;
    }
}
