/* Basic Reset & Defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* Light background */
    padding: 20px;
}

/* Container */
.premium-page-container {
    max-width: 1100px;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.2em;
    color: #2c3e50; /* Darker blue-grey */
    margin-bottom: 15px;
    position: relative; /* For badge positioning */
}

.page-header p {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 10px auto;
}

/* Coming Soon Badges */
.coming-soon-badge {
    display: inline-block;
    background-color: #e74c3c; /* Red */
    color: #fff;
    font-size: 0.7em;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-badge {
   font-size: 0.5em; /* Smaller for header */
   margin-left: 10px;
   vertical-align: middle;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Tier Comparison Section */
.tier-comparison-container {
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
    gap: 30px; /* Space between cards */
    margin-bottom: 40px;
    justify-content: center; /* Center cards if they don't fill space */
    align-items: stretch; /* Make cards same height if they wrap */
}

.tier-card {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 30px;
    flex: 1; /* Each card tries to take equal space */
    min-width: 300px; /* Minimum width before wrapping */
    max-width: 500px; /* Maximum width */
    position: relative; /* For badge positioning */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex; /* Use Flexbox for vertical alignment */
    flex-direction: column; /* Stack elements vertically */
}

.tier-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.tier-card h2 {
    color: #3498db; /* Blue for Premium */
    margin-bottom: 10px;
    font-size: 1.8em;
}

.tier-card.premium-plus h2 {
    color: #9b59b6; /* Purple for Premium Plus */
}

.tier-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
    min-height: 50px; /* Ensure description areas align roughly */
}

.tier-card ul {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow the list to grow and push price down */
}

.tier-card ul li {
    margin-bottom: 12px;
    color: #444;
    padding-left: 5px; /* Space for potential future icons */
}

.tier-card ul li strong {
     color: #333;
}

.tier-price {
    font-size: 1.6em;
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
    margin-top: auto; /* <<< THIS PUSHES PRICE TO BOTTOM */
}

.price-duration {
    font-size: 0.6em;
    font-weight: 400;
    color: #777;
}

/* Why Upgrade Section */
.why-upgrade-section {
    background-color: #eaf2f8; /* Light blue background */
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.why-upgrade-section h2 {
    text-align: center;
    color: #2980b9; /* Slightly darker blue */
    margin-bottom: 20px;
}

.why-upgrade-section ul {
    list-style: none;
    columns: 2; /* Create two columns for the list items */
    column-gap: 40px;
    padding-left: 10px; /* Adjust as needed */
}

.why-upgrade-section ul li {
    margin-bottom: 10px;
    color: #333;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .premium-page-container {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 1.8em;
    }

    .tier-comparison-container {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center cards when stacked */
    }

    .tier-card {
        min-width: 90%; /* Allow cards to take more width */
        max-width: 90%;
    }
    /* Ensure price is still at bottom when stacked */
     .tier-card ul {
        flex-grow: 0; /* Reset grow when stacked if needed, depends on content */
    }

    .why-upgrade-section ul {
        columns: 1; /* Single column on smaller screens */
    }
}