/* General Styling */
body {
    font-family: 'Lato', sans-serif;
    background-color: #F7F8FB; /* Restore original background color */
    color: #2B2B2B;
}

body {
    padding-bottom: 60px; /* Adjust this value as needed */
}

/* Header Styling */
header {
    background-color: #ebf4ff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
    max-width: 300px;
}

/* Header and Title Styles */
h1 {
    font-size: calc(1.3rem + .6vw);
    font-weight: 500;
    color: #666;
}

h2 {
    color: #1A85FF;
    border-bottom: 2px solid #1A85FF;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.2rem;
    color: #1A85FF;
    margin-bottom: 10px;
}

.h6 {
    font-size: 1rem;
    color: #5BA700;
    margin-bottom: 10px;
}



.membership-headline {
    font-size: calc(1.3rem + .6vw); /* Large and prominent font size */
    font-weight: 500;
    color: #666; /* Use a strong color to match your existing palette */
    text-align: left; /* Center the headline */
    margin-bottom: 20px; /* Add space below the headline */
    padding: 10px 0; /* Add some padding for breathing room */
    border-bottom: 2px solid #E0E0E0; /* Subtle bottom border to create separation */
    line-height: 1.2;
}

.jazzed-headline {
    font-family: 'Arial', sans-serif;
    font-size: 2.0rem;
    color: #5BA700; 
    text-align: center;
    font-weight: bold;
} 

.highlight-price {
    color: #dd0000; /* Vibrant orange */
    font-size: 2.5rem;
    font-weight: bold;
}

.value-stack {
    margin-top: 12px;
    padding: 18px 22px 16px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
    border-left: 4px solid #5BA700;
    background: #f4f9ec;
    box-shadow: 0 8px 18px rgba(16, 32, 0, 0.08);
    min-width: 320px;
}

.value-item {
    font-size: 1.15rem;
    color: #3a3a3a;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 6px 0;
}

.value-item::before {
    content: "•";
    color: #5BA700;
    font-size: 1.2rem;
    line-height: 1;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-stack-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #3a5f00;
    font-weight: 600;
    border-bottom: 2px solid rgba(91, 167, 0, 0.25);
    padding-bottom: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.value-item.price-callout {
    color: #2b2b2b;
    font-weight: 600;
}

.value-item.price-callout .highlight-price {
    font-size: 2rem;
}

/* Button Styling */
.btn-primary {
    background-color: #5BA700; /* Custom green button color */
    border-color: #5BA700;
    font-size: 18px;
    padding: 12px 24px; /* Increased padding to make the button taller */
    margin-bottom: 30px; /* Increased bottom margin for more space */
}

.btn-primary:hover {
    background-color: #4C8C00;
    border-color: #4C8C00;
}

/* Order Summary Styling */
.order-summary h2 {
    color: #5BA700;
    border-bottom: 2px solid #5BA700;
    padding-bottom: 10px;
}

/* Feature List */
.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
   
}

.feature-list li:before {
    content: "✓";
    color: #5BA700;
    font-weight: bold;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-color: #E8F5E9;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
}


/* Card Styling */
.card {
    border: 2px solid #ddd; /* Custom card border */
    border-radius: 12px; /* Restore custom border radius */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Custom shadow */
    transition: all 0.3s ease;
}

.card.border-primary {
    border-color: #1A85FF; /* Custom primary border color */
}

.card-body {
    padding: 20px; /* Restore custom padding */
}

#plan-options .plan-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center; /* Ensure text alignment is centered */
    height: auto; /* Allow the height to adjust based on content */
    background-color: #fff; /* Default background color */
}

#plan-options .plan-option.selected {
    border: 2px solid #1A85FF;
    box-shadow: 0 2px 5px 0 rgba(163, 163, 163, 0.1);
    background-color: #e6f3ff; /* Change background color when selected */
    height: auto; /* Allow the height to adjust based on content */
}

#plan-options .plan-option:hover {
    transform: translateY(-2px);
    background-color: #fafafa;
    box-shadow: 0 4px 10px 1px rgba(163, 163, 163, 0.1);
}

#plan-options .plan-option .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; /* Ensure the card body takes up the full height */
}

#plan-options .badge-warning {
    background-color: rgba(255, 191, 0, 0.15);
    color: #b38600;
    font-size: .625rem;
    line-height: 1;
    padding: 0.5rem 1rem;
}

#plan-options .plan-option h5 {
    opacity: 0.8;
    transition: all 0.2s ease;
    font-size: calc(1.275rem + .3vw);
}

#plan-options .plan-option:hover h5 {
    opacity: 1;
}

/* Badge Styling */
.badge {
    padding: 5px 10px;
    font-size: .625rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    vertical-align: baseline;
    border-radius: .25rem;
}

/* Plan Price Styles */
.plan-price {
    font-size: calc(1.275rem + .3vw);
    font-weight: bold;
    color: #5BA700;
}

.plan-interval {
    font-size: 14px;
    color: #666;
}

.plan-discount {
    font-size: 16px;
    font-weight: bold;
    color: #dc0606;
}

/* Total Price Styles */
#total-price {
    font-size: 20px;
    font-weight: bold;
    color: #5BA700;
    text-align: center;
    padding: 8px;
    background-color: #E8F5E9;
    border-radius: 4px;
    margin-top: 15px;
}

.hidden {
    display: none;
}



/* Styles for all form controls including select */
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Specific styles for select elements */
select#country, select#state {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 8px 10px;
    padding-right: 2.25rem;
}

/* Footer Styling */
footer {
    background-color: #ebf4ff;
    padding: 15px 0;
    margin-top: 40px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

footer p {
    margin-bottom: 0;
    color: #666;
}

/* Mobile styles */
@media screen and (max-width: 767px) {
    .form-control, select#country, select#state {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.5rem 0.75rem;
    }

    select#country, select#state {
        padding-right: 2.25rem;
    }

    /* Ensure dropdown options are larger on mobile */
    select#country option, select#state option {
        font-size: 16px;
    }
}

/* Remove default appearance for IE */
select#country::-ms-expand, select#state::-ms-expand {
    display: none;
}

/* Focus styles */
.form-control:focus, select#country:focus, select#state:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}