:root {
    --primary-color: #4472c4;
    --primary-dark: #2d4a8e;
    --accent-gold: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-light: #e5e5e5;
    --success-color: #0066cc;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}


.page-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1rem;
    max-width: 600px;
}

/* Mobile Tab Navigation */
.mobile-tabs {
    display: none;
    border-radius: 10px;
    overflow-x: auto;
}

.mobile-tabs-wrapper {
    display: flex;
    min-width: max-content;
}

.mobile-tab {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 80px;
}

.mobile-tab.active {
    background: var(--white);
    color: var(--text-dark);
}

.mobile-tab:not(.active) {
    color: var(--text-light);
}

.mobile-tab:hover {
    color: var(--text-dark);
}

.pricing-header {
    display: grid;
    grid-template-columns: 300px repeat(3, 1fr);
    gap: 20px;
}

.pricing-header-empty {
    /* Empty space for feature labels column */
}

.pricing-plan {
    display: grid;
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    align-items: end;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.plan-name small, .mobile-plan-name small {
    font-size: 0.8rem;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 16px;
    padding: 0 8px;
}

.plan-price {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.plan-button {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.plan-button:hover {
    background: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

/* Remove checkmark styles */

/* Feature Rows */
.features-section {
    margin-top: 40px;
    background: var(--white);
    border-radius: 10px;
    padding: 24px 0;
}

.feature-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding: 0 20px;
}

.feature-row {
    display: grid;
    grid-template-columns: 300px repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    display: flex;
    font-size: 1.1rem;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    border-right: 1px solid var(--border-light);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.feature-name {
    font-weight: 600;
    color: var(--text-dark);
}

.feature-value {
    text-align: center;
    padding: 0 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-right: 1px solid var(--border-light);
}

.feature-value:last-child {
    border-right: none;
}

.feature-value.highlight {
    color: var(--text-dark);
    font-weight: 600;
}

.feature-value.unavailable {
    color: var(--text-dark);
}

.feature-tick {
    color: #28a745;
}

.feature-cross {
    color: #dc3545;
}

.feature-free {
    color: #28a745;
    font-weight: 600;
}

.feature-none {
    color: #28a745;
    font-weight: 600;
}

/* Mobile Single Column View */
.mobile-plan-view {
    display: none;
}

.mobile-plan-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.mobile-plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.mobile-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.mobile-plan-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 16px;
}

.mobile-plan-price {
    color: var(--text-light);
    margin-bottom: 20px;
}

.mobile-features {
    margin: 24px 0;
}

.mobile-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mobile-feature-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.mobile-feature-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-feature-value {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
}

.btn-white:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* FAQ Section */
.bg-trans-section {
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.info-trigger {
    text-decoration: underline;
	text-decoration-style: dashed;
    text-underline-offset: 6px;
    cursor: pointer;
	width: fit-content;
}

.info-box {
    display: none;
    position: absolute;
    background: white;
	border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 250px;
    z-index: 100;
}

.info-box-header {
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:10px;
	border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.info-box-body {
	padding:10px;
}

.info-box .primary-text {
    font-size:16px;
    font-weight: 600;
    line-height: normal;
}
    
.info-box .secondary-text {
    font-size:14px;
    line-height: normal;
}

.info-box .btn-close {
    font-size:10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .pricing-header,
    .feature-row {
        display: none;
    }

    .features-section {
        display: none;
    }

    .mobile-tabs {
        display: block;
    }

    .mobile-plan-view {
        display: block;
    }

}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

}