
    /* Gold Color Variables */
    :root {
        --gold-primary: #FFD700; /* Gold */
        --gold-secondary: #DAA520; /* Goldenrod */
        --gold-accent: #B8860B; /* DarkGoldenrod */
        --dark-bg: #1a1a1a; /* Dark background for contrast */
        --light-text: #f0f0f0;
        --check-color: #3CB371; /* Success Green */
        --cross-color: #DC143C; /* Failure Red */
    }

    /* Section & Container Setup */
    .plan-section {
        padding: 50px 20px;
        background-color: var(--dark-bg);
        font-family: Arial, sans-serif;
        color: var(--light-text);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        text-align: center;
        font-size: 2.5em;
        font-weight: bold;
        color: var(--gold-primary);
        margin-bottom: 40px;
    }

    /* Plan Grid Layout */
    .plan-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    /* Plan Card Styling */
    .plan-card {
        background: #2a2a2a; /* Slightly lighter dark background */
        border: 2px solid var(--gold-secondary);
        border-radius: 15px;
        width: 100%;
        max-width: 300px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
    }

    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
    }

    /* Recommended Card Styling */
    .plan-card.recommended {
        border-color: var(--gold-primary);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    }

    /* Ribbon for Recommended Plan */
    .plan-ribbon {
        background: var(--gold-primary);
        color: var(--dark-bg);
        font-weight: bold;
        padding: 5px 30px;
        position: absolute;
        top: 15px;
        right: -30px;
        transform: rotate(45deg);
        font-size: 0.9em;
        text-transform: uppercase;
        z-index: 10;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    /* Header Section */
    .plan-header {
        background: var(--gold-accent);
        padding: 25px 20px;
        text-align: center;
    }

    .plan-name {
        font-size: 1.5em;
        margin-bottom: 5px;
        color: var(--light-text);
        text-transform: uppercase;
    }

    .plan-price {
        font-size: 3em;
        font-weight: 700;
        color: var(--light-text);
    }

    .plan-price span {
        font-size: 0.5em;
        vertical-align: top;
        font-weight: normal;
        margin-right: 5px;
        color: var(--gold-primary);
    }

    /* Features List */
    .plan-features {
        list-style: none;
        padding: 20px 30px;
        margin: 0;
    }

    .plan-features li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        font-size: 1em;
        border-bottom: 1px dashed rgba(255, 215, 0, 0.15);
    }

    .plan-features li:last-child {
        border-bottom: none;
    }

    .plan-feature-item{
        float: none !important;
    }

    .plan-icon {
        font-size: 1.2em;
        font-weight: bold;
        margin-left: 10px;
    }

    .plan-icon.check {
        color: var(--check-color);
    }

    .plan-icon.cross {
        color: var(--cross-color);
    }

    /* Call to Action Button */
    .plan-cta {
        text-align: center;
        padding: 20px 0;
    }

    .plan-cta a {
        display: inline-block;
        background-color: var(--gold-primary);
        color: var(--dark-bg) !important;
        padding: 12px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        text-transform: uppercase;
        transition: background-color 0.3s, transform 0.1s;
        box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    }

    .plan-cta a:hover {
        background-color: var(--gold-secondary);
        transform: translateY(-2px);
    }

    /* Responsiveness */
    @media (max-width: 768px) {
        .plan-grid {
            gap: 20px;
        }
        .plan-card {
            max-width: 90%;
        }
    }
