/* Specific styles for Tally Server 9 Page */

/* Stats cards styling / trust signals */
.stat-icon {
    font-size: 36px;
    color: #0044a8;
    margin-bottom: 12px;
}

.stat-label-large {
    font-size: 16px;
    font-weight: 700;
    color: #071b31;
    text-align: center;
    line-height: 1.4;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
    text-align: left;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #eef2f7;
}

.comparison-table th {
    background-color: #071b31;
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: #fcfdfe;
}

.comparison-table td.feature-name {
    font-weight: 600;
    color: #071b31;
    width: 25%;
}

/* Internal Card titles in Why section */
.tss-card-title-internal {
    font-size: 18px;
    font-weight: 700;
    color: #071b31;
    margin-bottom: 12px;
}

/* Centering FAQ accordion container */
.post-content-section .col-md-10 {
    float: none !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 14px;
    }
    .comparison-table th, .comparison-table td {
        padding: 12px 15px;
    }
    .comparison-table td.feature-name {
        width: 30%;
    }
    .worth-cta i.fa-arrow-right {
        display: none !important;
    }
    .banner-text {
        text-align: left;
        padding-right: 15px;
    }
    .banner-title, .banner-desc {
        text-align: left;
    }
    .banner-features {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .banner-features li {
        justify-content: flex-start;
    }
    .cta-wrapper {
        justify-content: flex-start;
    }
}


