.fx-rates-template-price-comparison-section {
    padding: 80px 0;
    background-color: #fff;
}

.frtpcs-shell {
    width: 100%;
}

.frtpcs-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
}

.frtpcs-label {
    margin: 0 0 16px;
    color: #4C6769;
    font-family: "Source Code Pro", monospace;
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}

.frtpcs-heading {
    margin: 0;
    color: #074F55;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.frtpcs-table-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.frtpcs-table-card {
    background: #fff;
    border: 1px solid #DEE2E3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.05), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.frtpcs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.frtpcs-th {
    padding: 24px 32px;
    color: #074F55;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #DEE2E3;
}

.frtpcs-td {
    padding: 20px 32px;
    color: #074F55;
    font-size: 16px;
    line-height: 1.4;
}

.frtpcs-tr {
    border-bottom: 1px solid #F3F4F6;
}

.frtpcs-tr:last-child {
    border-bottom: none;
}

/* Highlight Row Styles */
.frtpcs-tr.is-highlighted {
    background-color: #E3FBFD;
}

.frtpcs-tr.is-highlighted .frtpcs-td {
    font-weight: 600;
}

/* Red text for competitors' total cost */
.frtpcs-tr:not(.is-highlighted) .frtpcs-td:last-child {
    color: #EF4444;
}

.frtpcs-note {
    margin: 0;
    color: #4C6769;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
}

@media (max-width: 1199px) {
    .frtpcs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .frtpcs-heading {
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .fx-rates-template-price-comparison-section {
        padding: 48px 0;
    }
    
    .frtpcs-th, .frtpcs-td {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .frtpcs-table-container {
        overflow-x: auto;
    }
    
    .frtpcs-table {
        min-width: 600px;
    }
}
