    .entry-guide-section {
        background-color: #f9fbfa;
        /* border: 1px solid #e0e0e0; */
        border-radius: 12px;
        padding: 25px;
        /* margin-bottom: 30px; */
        font-family: 'Roboto', sans-serif;
    }

        .guide-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .guide-header h3 {
        color: var(--primary-green);
        font-size: 1.4rem;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .guide-header p {
        color: #666;
        font-size: 0.95rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .guide-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        border-left: 4px solid var(--secondary-green);
        transition: transform 0.2s;
    }

    .guide-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 12px rgba(0,0,0,0.1);
    }

    .icon-box {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: white;
        font-size: 1.2rem;
    }

    .green-bg { background-color: var(--primary-green); }
    .black-bg { background-color: var(--black); }

    .guide-card h4 {
        color: var(--black);
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .guide-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .guide-card li {
        font-size: 0.9rem;
        color: #555;
        margin-bottom: 8px;
        line-height: 1.5;
        /* position: relative; */
        padding-left: 15px;
    }

    /* .guide-card li::before {
        content: "•";
        color: var(--accent-green);
        font-weight: bold;
        position: absolute;
        left: 1px;
    } */

    .guide-card li strong {
        color: var(--primary-green);
    }

    .guide-footer {
        margin-top: 25px;
        padding-top: 15px;
        border-top: 1px dashed #ccc;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
    }

    .link-text {
        color: var(--primary-green);
        text-decoration: underline;
        font-weight: 500;
    }

    /* Mobile Adjustment */
    @media (max-width: 600px) {
        .entry-guide-section {
            padding: 15px;
        }
        .guide-header h3 {
            font-size: 1.2rem;
            flex-direction: column;
            gap: 5px;
        }
    }
