/* ---------------------------------
   PRICING.CSS
   Custom overrides for your Pricing page
---------------------------------- */

/* Example: Set global font and some spacing adjustments. */
body {
    font-family: "Open Sans", Arial, sans-serif;
}

/* Hero section: large header on top */
.hero-section {
    background: #0156a3; /* or #0d6efd from bootstrap? */
    /* Additional padding is handled via "py-5" in HTML. */
}

/* Card heading in the pricing table */
.card-header h4 {
    font-size: 1.5rem;
}

/* Example: margin or style tweaks for social icons in the footer */
footer .fa {
    transition: transform 0.15s;
}
footer .fa:hover {
    transform: scale(1.1);
}

/* Example: override bootstrap .btn-secondary if you like */
.btnSignup {
    background-color: #6c757d; /* default bootstrap secondary color */
    border: none;
    color: #fff;
}
.btnSignup:hover {
    background-color: #5a6268;
}
