

.container-3 {
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
}

/* Comparison Table */
.comparison-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg-oxford-blue);
    color: var(--surface-100);
}

.comparison-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.comparison-table {
    overflow-x: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

th, td {
    padding: 1rem;
    border-bottom: var(--border-main);
}

th {
    background: var(--section-bg);
    font-weight: 600;
}

td i.fas {
    color: var(--primary-190);
}

/* FAQ Section */
.faq-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--section-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.faq-itemz {
    /* background: white; */
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: block;
}

.faq-itemz h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--surface-100);
    font-family: "inter", sans-serif !important;
    font-weight: 600;
}

.faq-itemz p {
    color: var(--surface-100);
    opacity: 0.8;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: none;
    }

    .comparison-table {
        margin: 0 -1.5rem;
        padding: 0 1.5rem;
    }
}

/* Print Styles */
@media print {
       .pricing-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .comparison-table {
        overflow-x: visible;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}