/* General Page Styles */
.comparison-header-block {
    text-align: center;
    padding: 40px 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
    margin-bottom: 40px;
}

.comparison-header-block h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.comparison-header-block .subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

.executive-summary {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
}

/* Highlights Section */
.highlight-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Strict 3 columns on desktop */
    gap: 30px;
    margin-bottom: 60px;
}

.highlight {
    background-color: #252525;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #444;
    text-align: center;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.highlight h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff9800;
}

.highlight p {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
}

/* --- Comparison Table & Sticky Header --- */
.comparison-container {
    width: 100%;
}

.comparison-header-sticky {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 48px;
    background-color: #1a1a1a; /* Match body background */
    padding: 15px 0;
    z-index: 10;
    border-bottom: 1px solid #555;
}

.comparison-header {
    text-align: center;
    padding: 10px;
    background-color: #252525;
    border-radius: 8px;
}

.comparison-header .logo {
    height: 40px;
    margin-bottom: 10px;
    filter: grayscale(100%) brightness(1.5);
}
.comparison-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.comparison-column {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.comparison-category {
    grid-column: 1 / -1;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #ff9800;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    background-color: #2a2a2a;
}

.comparison-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.comparison-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #aaa;
}

/* Summary Table */
.summary-table-wrapper {
    margin-top: 00px;
    padding: 30px;

    border-radius: 8px;
}

.margin-top-30-center
{
    text-align: center;
    margin-top: 30px;
}

.summary-table-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
}

.summary-table th, .summary-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.summary-table th {
    font-size: 1.1rem;

}

.summary-table td {
    font-size: 1rem;
}

.summary-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.summary-table .check {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.5rem;
}

.summary-table .cross {
    color: #F44336;
    font-weight: bold;
    font-size: 1.5rem;
}

.summary-table .partial {
    color: #FFC107;
}

/* CTA Block */
.cta-block {
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    background-color: #2c2c2c;
    border-radius: 8px;
}

.cta-block h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-block p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.cta-button-compare {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff9800;

    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button-compare :hover {

}

/* Responsive adjustments */
@media (max-width: 992px) {
    .highlight-section,
    .comparison-table {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .comparison-header-sticky {
        position: static; /* Disable sticky header on mobile */
        grid-template-columns: 1fr; /* Stack headers vertically */
        border-bottom: none;
        padding: 0;
    }

    .comparison-category {
        margin-top: 20px;
    }
}
