<style>
   /* This style block contains all the necessary rules for the calculator section */
    .calculator-section .interactive-cards {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: nowrap;
    }

    /* Fixed the background and text color for the calculator cards */
    .calculator-section .interactive-card {
        background-color: var(--light-color); /* Changed from dark to light background */
        color: var(--dark-color); /* Changed text color to dark for visibility */
        border: none;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        cursor: pointer;
    }

    .calculator-section .interactive-card h4 {
        color: var(--dark-color); /* Ensures the heading is dark */
    }

    .calculator-section .interactive-card p {
        color: #666; /* Ensures the paragraph text is visible */
    }

    .calculator-section .interactive-card:hover {
        background-color: #f0f0f0; /* Adjusted hover color for the new background */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .calculator-section .interactive-card svg {
        color: var(--accent-color) !important;
    }
    
    /* Styles for the bell icon and tip text */
    .icon-with-tip {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .bell-icon {
        color: var(--primary-color);
    }

    .tip-text {
        font-size: 0.9rem;
        color: var(--dark-color);
        font-weight: 600;
        margin-top: 16px;
    }

    /* New styles for the footer links to make them visible */
    .footer-bottom p a {
        color: var(--light-color); /* Makes the links white/light-gray against the dark footer */
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-bottom p a:hover {
        color: var(--accent-color); /* Optional hover effect */
    }

</style>
