    .contact-card {
        background:#ffffffcc;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 3px 8px rgba(0,0,0,.15);
        height: 100%;
    }

    .highlight-card {
        height: 100%;
        background: #f4fbf4;
        border-left: 6px solid #1f7a1f;
        border-radius: 10px;
        padding: 20px 22px;
        box-shadow: inset 0 0 0 1px rgba(31,122,31,.05);
        text-align: center;
    }

    .highlight-card h2 {
        margin: 0 0 6px;
        font-size: 2rem;
        line-height: 1;
        font-weight: 900;
        color: #1f7a1f;
    }

    .highlight-card p {
        margin: 0;
        font-weight: 700;
        color: #285c28;
    }

    .timeline-box {
        background: #fdfefd;
        border-radius: 12px;
        padding: 22px;
        height: 100%;
        box-shadow: inset 0 0 0 1px rgba(31,122,31,.06);
    }

    .timeline-subtitle {
        font-size: 1.08rem;
        font-weight: 800;
        color: #1f7a1f;
        margin-bottom: 14px;
        text-align: center;
    }

    .timeline {
        border-left: 4px solid #1f7a1f;
        padding-left: 22px;
    }

    .decade {
        font-size: 1.05rem;
        font-weight: 800;
        color: #1f7a1f;
        margin: 22px 0 10px;
    }

    .decade:first-child {
        margin-top: 0;
    }

    .timeline-item {
        position: relative;
        padding: 8px 0 8px 10px;
        color: #222;
    }

    .timeline-item::before {
        content: "🥇";
        position: absolute;
        left: -36px;
        top: 8px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #1f7a1f;
        color: #fff;
        text-align: center;
        line-height: 24px;
        font-size: 12px;
        box-shadow: 0 2px 6px rgba(0,0,0,.15);
    }

    .timeline-item.beker::before {
        content: "🏆";
        background: #cbe500;
        color: #000;
    }

    @media (max-width: 768px) {
        .contact-card {
            padding: 20px;
        }

        .timeline-box {
            padding: 16px;
        }

        .timeline {
            padding-left: 18px;
        }

        .timeline-item::before {
            left: -32px;
        }
    }
