:root {
    --primary-color: #483699;
    --primary-hover: #5b44c5;
    --danger-color: #e11d48;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: var(--gray-700);
}

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}


h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 4rem 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* card Styles */
.card {
    background: white;
    border-radius: 0.5rem;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06),
                0 8px 16px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
    border-color: var(--primary-color);
    border-width: 1px;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.12),
                0 3px 6px -1px rgba(0, 0, 0, 0.08),
                0 12px 24px -4px rgba(0, 0, 0, 0.12);
}



.card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.card-content {
    padding: 1.5rem;
    color: var(--gray-500);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.billing-toggle button {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.billing-toggle button.active {
    background-color: #483699;
    font-weight: bold;
    color: white;
}

.toggle {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    background: white;
    cursor: pointer;
}

.toggle.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .plans {
        grid-template-columns: repeat(2, 1fr);
    }
}


.plan {
    background: white;
    border-radius: 0.5rem;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06),
                0 8px 16px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.plan:hover {
    border-color: var(--primary-color);
    border-width: 1px;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.12),
                0 3px 6px -1px rgba(0, 0, 0, 0.08),
                0 12px 24px -4px rgba(0, 0, 0, 0.12);
}

.plan-header {
    padding: 1.5rem 1.5rem 0;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #483699;
    margin-bottom: 0.5rem;
}

.original-price {
    color: var(--gray-400);
    text-decoration: line-through;
}

.promo-price {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-color);
}

.plan-content {
    padding: 1.5rem;
    color: var(--gray-500);
}

.plan.selected {
    border-color: #483699;
    border-width: 2px;
}

.limited-offer {
    color: var(--danger-color);
    font-size: 0.875rem;
}

.plan ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.plan li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.plan li::before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
}

/* Button Styles */
.cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    
}

.cta-button:hover {
    background-color: var(--primary-hover);
}

.cta-button.secondary {
    background-color: var(--gray-100);
    color: var(--gray-400);
}

.cta-button.activity {
    background-color: #ed4a1c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cta-button.activity:hover {
    background-color: #fd5729;
}

.cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}




.cta-button.secondary:hover {
    background-color: #d0d0d0;
}


/* FAQ Section */
.faq {
    padding: 4rem 1rem;
    max-width: 768px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
}
.faq-question {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
}
.faq-question:hover {
    background-color: #f0f0f0;
}
.faq-answer {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    display: none;
}
.faq-question::after {
    content: '\02C5';
    float: right;
    transition: transform 0.3s;
}
.faq-question.active::after {
    transform: rotate(180deg);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    margin-top: 60px;
}

/* Payment page styles */
.payment-container {
    display: flex;
    min-height: 100vh;
}

.plan-details, .paypal-checkout {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.plan-details {
    background-color: #ffffff;
}

.paypal-checkout {
    background-color: #f5f5f5;
}

.content {
    max-width: 400px;
    width: 100%;
}

.content h1, .content h2 {
    color: #483699;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 2.2em;
    font-weight: bold;
}

.content h2 {
    font-size: 1.8em;
}

#selected-plan-price {
    font-size: 2.2em;
    font-weight: bold;
    margin: 20px 0;
    color: #483699;
}

#loading {
    text-align: center;
    margin-top: 20px;
}

#paypal-button-container {
    width: 100%;
}

@media (max-width: 768px) {
    .plans {
        flex-direction: column;
    }
    .plan {
        flex-basis: 100%;
    }
    .payment-container {
        flex-direction: column;
    }
    .plan-details, .paypal-checkout {
        padding: 20px;
    }
}




