 .section-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
        padding: 2rem 3rem;
    }

    .glass-card {
        background: var(--white);
        border: 1px solid var(--glass-border);
        border-radius: 28px;
        display: flex;
        flex-direction: column;
        height: 650px; /* 고정 높이로 전체 발란스 유지 */
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        overflow: hidden;
    }

    .glass-card:hover {
        border-color: var(--brand-accent);
        box-shadow: 0 30px 60px rgba(30, 43, 88, 0.1);
    }

    .icon-box {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-1);
        color: var(--brand-accent);
    }

    /* 리스트 스타일 */
    .data-row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(30, 43, 88, 0.04);
    }
    .data-row:last-child { border-bottom: none; }

    /* Flow Plan 전용 스타일 */
    .flow-item {
        padding: 10px 14px;
        border-radius: 12px;
        background: var(--bg-1);
        border: 1px solid var(--glass-border);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
    }
    .flow-item:hover {
        background: var(--white);
        border-color: var(--brand-sub-red);
    }
    
    .flow-marker {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--brand-sub-red);
    }

    /* 이미지 영역 */
    .card-image-box {
        width: 100%;
        height: 180px;
        margin-top: auto;
        overflow: hidden;
        position: relative;
    }
    .card-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .glass-card:hover .card-image-box img {
        transform: scale(1.1);
    }
