
.hero-banner {
    width: 100%;
    background: #101c45;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.hero-container {
    max-width: 850px;
    margin: 0 auto;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}

.subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 25px;
}

.description {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.6;
    color: #cbd5e1;
    /* max-width: 680px; */
    /* margin: 0 auto 35px auto; */
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 12px 28px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-red {
    background-color: #dc2626; /* Bright solid red */
    color: #ffffff;
    border: 1px solid #dc2626;
}

    .btn-red:hover {
        background-color: #b91c1c;
        border-color: #b91c1c;
    }

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #475569;
}

    .btn-outline:hover {
        border-color: #ffffff;
        background-color: rgba(255, 255, 255, 0.05);
        color: #fff;
    }

    .btn-outline i {
        font-size: 0.9rem;
    }




.overview-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* Left Column Content */
.category-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #c83232; /* Red accent color */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

    .category-tag::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 3px;
        background-color: #c83232;
    }

.main-heading {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0d1b3e; /* Deep navy color */
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.description-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 18px;
}

/* Right Column Card */
.usage-card {
    background-color: #edf5fa; /* Soft blue tinted background */
    border: 1px solid #dbeafe; /* Subtle border */
    border-radius: 8px;
    padding: 32px 28px;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.usage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.45;
}

    .usage-item i {
        color: #dc2626; /* Circular checkmark color */
        font-size: 1.1rem;
        margin-top: 1px;
        flex-shrink: 0;
    }

    .usage-item strong {
        color: #0f172a;
        font-weight: 700;
    }

/* Responsive adjustments for mobile screens */
@media (max-width: 850px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-heading {
        font-size: 1.75rem;
    }
}



.range-section {
    margin: 0 auto;
    background: #f0f0f0;
    padding: 60px 0px;
}

/* Section Header Styling */
.header-container {
    text-align: center;
    margin-bottom: 50px;
}

.sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #c83232; /* Red accent color */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

    .sub-heading::before,
    .sub-heading::after {
        content: "";
        display: block;
        width: 40px;
        height: 1.5px;
        background-color: #c83232;
    }

.main-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0c1838; /* Dark navy heading */
    letter-spacing: -0.5px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.08);
    }

/* Image Container Area */
.card-image-wrapper {
    background-color: #f1f5f9; /* Light grayish-blue image background */
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

    .card-image-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.card-image-placeholder {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

/* Card Body */
.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    min-height: 48px; /* Ensures consistent title height */
}

/* Specs List Layout */
.specs-table {
    width: 100%;
    margin-bottom: 0px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.78rem;
}

.spec-label {
    color: #64748b;
    font-weight: 500;
}

.spec-value {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
}

/* Button Link */
.view-details-btn {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1d4ed8; /* Navy/Blue link color */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
}

    .view-details-btn:hover {
        color: #1e40af;
        gap: 12px;
    }

/* Responsive Breakdown */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .main-heading {
        font-size: 1.75rem;
    }
}

p {
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    margin-top: 0;
}


.statewide-banner {
    width: 100%;
    background-color: #101c45;
    color: #ffffff;
    padding: 80px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.banner-container {
    width: 100%;
    max-width: 1100px;
}


.sub-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

    .sub-tag::before {
        content: "";
        display: inline-block;
        width: 28px;
        height: 4px;
        background-color: #e11d48;
        border-radius: 1px;
    }

    .sub-tag .prefix {
        color: #cbd5e1;
        font-weight: 600;
    }


.main-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    max-width: 950px;
}


.description-texts {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    color: #fff;
}


@media (max-width: 768px) {
    .statewide-banner {
        padding: 50px 20px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .description-text {
        font-size: 0.88rem;
    }
}

a {
    color: #f6a5a5;
}




.quote-section {
    width: 100%;
    background-color: #ffffff;
    color: #0f172a;
    padding: 70px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.quote-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}


.quote-content {
    max-width: 600px;
}

.main-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0c1838;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.main-titles {
    font-size: 2.25rem;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.description-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #475569;
}


.quote-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 14px 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-red {
    background-color: #dc2626;
    color: #ffffff;
    border: 1px solid #dc2626;
    text-transform: uppercase;
}

    .btn-red:hover {
        background-color: #b91c1c;
        border-color: #b91c1c;
    }


@media (max-width: 850px) {
    .quote-container {
        flex-direction: column;
        text-align: center;
    }

    .quote-actions {
        justify-content: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }
}


.faq-section {
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 0px;
}

.header-container {
    text-align: center;
    margin-bottom: 45px;
}

.sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

    .sub-heading::before,
    .sub-heading::after {
        content: "";
        display: block;
        width: 35px;
        height: 1.5px;
        background-color: #dc2626;
    }

.main-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0c1838;
    letter-spacing: -0.5px;
}



.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease-in-out;
}

    .faq-item:hover {
        border-color: #cbd5e1;
    }


    .faq-item details {
        width: 100%;
    }

    .faq-item summary {
        padding: 20px 24px;
        font-size: 1.05rem;
        font-weight: 700;
        color: #0c1838;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        user-select: none;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }


.faq-icon {
    font-size: 0.9rem;
    color: #dc2626;
    transition: transform 0.3s ease;
}


.faq-item details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-item details[open] summary {
    border-bottom: 1px solid #f1f5f9;
}


.faq-answer {
    padding: 20px 24px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
    background-color: #ffffff;
}

@media (max-width: 640px) {


    .main-heading {
        font-size: 1.75rem;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .faq-answer {
        font-size: 0.88rem;
        padding: 16px 20px;
    }
}


.table-dark {
    background: #ffffff;
    color: #000000;
    border-radius: 12px;
    overflow: hidden;
}

    .table-dark thead th {
        background: #f8f9fa;
        color: #212529;
        font-size: 17px;
        letter-spacing: .3px;
        border-bottom: 2px solid #dee2e6;
    }

    .table-dark tbody td {
        padding: 16px;
        border: 1px solid #0000001c;
        font-size: 15px;
        vertical-align: middle;
    }

    .table-dark tbody tr:hover {
        background: rgba(255,255,255,.06);
    }

    .table-dark td:first-child {
        width: 220px;
        font-weight: 600;
        color: #000000;
    }

.table-responsive {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .table-dark thead th,
    .table-dark tbody td {
        font-size: 14px;
        padding: 12px;
    }
}

.table-dark.table-hover tbody tr:hover {
    color: #000000;
    background-color: rgba(255, 255, 255, .075);
}
