/* Pricing Section */

.pricing-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
}

.pricing-section h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: #0056b3;
    /* Your brand blue */
    text-align: center;
}

.pricing-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.5;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
}


/* Pricing Table */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table thead {
    background-color: #0056b3;
    color: white;
    text-align: left;
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
}

.pricing-table tbody tr:hover {
    background-color: #f0f8ff;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}


/* Responsive for smaller screens */

@media (max-width: 600px) {
    .pricing-table thead {
        display: none;
    }
    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }
    .pricing-table tr {
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background: #fff;
        padding: 10px;
    }
    .pricing-table td {
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: right;
        font-size: 0.95rem;
    }
    .pricing-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 15px;
        font-weight: 600;
        color: #0056b3;
        text-align: left;
    }
}


/* Note paragraph */

.pricing-section p strong {
    color: #000;
    font-weight: 700;
}


/* Button */

.btn.primary-btn {
    display: block;
    margin: 20px auto;
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 86, 179, 0.4);
    text-align: center;
    max-width: 280px;
    width: 100%;
}

.btn.primary-btn:hover,
.btn.primary-btn:focus {
    background-color: #003d80;
    outline: none;
    box-shadow: 0 5px 12px rgba(0, 61, 128, 0.6);
}